Skip to content

Instantly share code, notes, and snippets.

@stalniy
Last active April 28, 2019 13:58
Show Gist options
  • Save stalniy/6a298eaef6412453167a0af3c95bb0dc to your computer and use it in GitHub Desktop.
Save stalniy/6a298eaef6412453167a0af3c95bb0dc to your computer and use it in GitHub Desktop.
CASL subject example
class Todo {
constructor({ title, assignee }) {
this.title = title;
this.assignee = assignee;
}
}
const myTodo = new Todo({
title: "buy food",
assignee: "me"
});
const johnTodo = new Todo({
title: "read the book",
assignee: "John"
});
const ability = new Ability(defineAbilitiesFor("member"));
console.log("can read my todo?", ability.can("read", myTodo)); // true
console.log("can close my todo?", ability.can("close", myTodo)); // true
console.log("can read John's todo", ability.can("read", johnTodo)); // true
console.log("can close John's todo?", ability.can("close", johnTodo)); // false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment