Skip to content

Instantly share code, notes, and snippets.

@DeadAlready
Last active March 28, 2016 12:48
Show Gist options
  • Save DeadAlready/66b05b73320cf176e39e to your computer and use it in GitHub Desktop.
Save DeadAlready/66b05b73320cf176e39e to your computer and use it in GitHub Desktop.
Role definitions
let roles = {
manager: {
can: ['publish'],
inherits: ['writer']
},
writer: {
can: ['write'],
inherits: ['guest']
},
guest: {
can: ['read']
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment