Skip to content

Instantly share code, notes, and snippets.

@francium-lupe
Created January 17, 2024 21:02
Show Gist options
  • Save francium-lupe/81dab1669a7485fd0473216ebddb663f to your computer and use it in GitHub Desktop.
Save francium-lupe/81dab1669a7485fd0473216ebddb663f to your computer and use it in GitHub Desktop.
(ReBAC) in Node.js 8
const authorized = await oso.authorize(
{ type: 'User', id: 'Peter' },
'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