Last active
April 28, 2019 13:58
-
-
Save stalniy/6a298eaef6412453167a0af3c95bb0dc to your computer and use it in GitHub Desktop.
CASL subject example
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
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
https://codesandbox.io/s/4qxj4y2l99?expanddevtools=1&fontsize=14&view=preview