Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Permissions Migrations #53

Closed
djamesfar opened this issue Mar 9, 2021 · 1 comment
Closed

Permissions Migrations #53

djamesfar opened this issue Mar 9, 2021 · 1 comment
Assignees

Comments

@djamesfar
Copy link

  • bump dependency of tipoff/authorization to 2.5.0
  • Verify all permissions in the policies are included in the package permissions migration
  • Add arrays after every permission in that migration except delete to include the ‘Owner’ role
  • Also add the ‘Staff’ role to the array for every view permission

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);
    }
@djamesfar djamesfar added this to To do in Authorization v2 Mar 9, 2021
@djamesfar djamesfar self-assigned this Mar 9, 2021
@djamesfar djamesfar moved this from To do to In progress in Authorization v2 Mar 9, 2021
@arwaawan3 arwaawan3 moved this from In progress to To do in Authorization v2 Mar 9, 2021
@arwaawan3 arwaawan3 moved this from To do to In progress in Authorization v2 Mar 9, 2021
@arwaawan3
Copy link

#51

Authorization v2 automation moved this from In progress to Done Mar 11, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Development

No branches or pull requests

2 participants