Skip to content
Snippets Groups Projects

Feature/authorization/curry

Merged Defendi Alberto requested to merge feature/authorization/curry into dev
46 files
+ 59
259
Compare changes
  • Side-by-side
  • Inline
Files
46
+ 2
1
export enum Roles {
/** Website visitor, is not logged. Can access to NonAuthRoutes */
visitor = '',
/** Can access to private and restricted routes depending on their permissions level. */
/** Can access to routes wrapped by withAuthorization. */
senior = 'senior',
admin = 'admin',
operator = 'operator',
driver = 'driver',
}
Loading