Skip to content

Instantly share code, notes, and snippets.

@stalniy
Created April 27, 2019 17:20
Show Gist options
  • Save stalniy/d90aac1ea942774fb85a219111bf9e79 to your computer and use it in GitHub Desktop.
Save stalniy/d90aac1ea942774fb85a219111bf9e79 to your computer and use it in GitHub Desktop.
CASL permissions for member and admin
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