Skip to content

Instantly share code, notes, and snippets.

@francium-lupe
Last active August 29, 2023 13:56
Show Gist options
  • Save francium-lupe/abb24faf1cf15e4fddb311f6e8621d34 to your computer and use it in GitHub Desktop.
Save francium-lupe/abb24faf1cf15e4fddb311f6e8621d34 to your computer and use it in GitHub Desktop.
ReBAC 1
function getRolesForUser(user) {
if (user._id.toString() === this.userId.toString()) {
return ['booked-user'];
}
return [];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment