Skip to content

Instantly share code, notes, and snippets.

@francium-lupe
Last active August 29, 2023 13:59
Show Gist options
  • Save francium-lupe/31b6648b6279436568d961182729e143 to your computer and use it in GitHub Desktop.
Save francium-lupe/31b6648b6279436568d961182729e143 to your computer and use it in GitHub Desktop.
Rental Car Platform
const requiredRoles = {
'/vehicle/lock-vehicle': new Set(['admin', 'manager', 'booked-user']),
'/vehicle/unlock-vehicle': new Set(['admin', 'manager', 'booked-user']),
'/vehicle/update': new Set(['admin', 'manager']),
'/vehicle/update-authorized-users': new Set(['admin'])
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment