Created
April 27, 2019 17:20
-
-
Save stalniy/d90aac1ea942774fb85a219111bf9e79 to your computer and use it in GitHub Desktop.
CASL permissions for member and admin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export function defineAbilitiesFor(role) { | |
const { can, rules } = AbilityBuilder.extract() | |
if (role === 'admin') { | |
can('manage', 'all') | |
} else { | |
can('read', 'all') | |
can('manage', 'Todo', { assignee: 'me' }) | |
} | |
return rules | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment