Created
April 10, 2020 10:48
-
-
Save stalniy/bef64f9730e9518ab42684d3a277eddf to your computer and use it in GitHub Desktop.
CASL 4.0 simple Ability
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
import { Ability } from '@casl/ability'; | |
type AppAbilities = [ | |
'read' | 'update' | 'delete' | 'create', | |
'Article' | 'Comment' | 'User' | |
]; | |
export type AppAbility = Ability<AppAbilities>; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment