Skip to content

Instantly share code, notes, and snippets.

@stalniy
Last active April 10, 2020 11:06
Show Gist options
  • Save stalniy/5845cc186ac531ce1955686eaf15c867 to your computer and use it in GitHub Desktop.
Save stalniy/5845cc186ac531ce1955686eaf15c867 to your computer and use it in GitHub Desktop.
CASL 4.0 CASL typescript claim based authorization
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