Closed djamesfar closed 3 years ago
example from the Fees package:
public function up() { $permissions = [ 'view fees' => ['Owner', 'Staff'], 'create fees' => ['Owner'], 'update fees' => ['Owner'], 'delete fees' => [], // Admin only ]; $this->createPermissions($permissions); }
This issue does not apply to the test support package. There may be a way to do a better job of testing the migrated permissions though and making sure they are assigned to roles.
example from the Fees package: