role.ts 252 B

123456789
  1. /**
  2. * All possible authorization roles for registered users.
  3. */
  4. export enum Role {
  5. // The Authenticated role means simply that the user is logged in
  6. Authenticated = 'Authenticated',
  7. Customer = 'Customer',
  8. Superadmin = 'Superadmin',
  9. }