Skip to content

Instantly share code, notes, and snippets.

@francium-lupe
Created January 17, 2024 20:59
Show Gist options
  • Save francium-lupe/e91389f11e6acde2e7c70b66c437724b to your computer and use it in GitHub Desktop.
Save francium-lupe/e91389f11e6acde2e7c70b66c437724b to your computer and use it in GitHub Desktop.
(ReBAC) in Node.js 5
const authorized = await oso.authorize(
{ type: 'User', id: 'Bill' },
'edit',
{ type: 'Issue', id: 'tps-reports-99' }
);
console.log(authorized); // false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment