Last active
April 10, 2020 11:06
-
-
Save stalniy/5845cc186ac531ce1955686eaf15c867 to your computer and use it in GitHub Desktop.
CASL 4.0 CASL typescript claim based authorization
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 Actions = 'create' | 'read' | 'update' | 'delete'; | |
type AppAbility = Ability<Actions>; | |
const ability: AppAbility = new Ability<Actions>(); | |
console.log(ability.can('create')); | |
console.log(ability.can('update')); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment