admin-capabilities.ts 230 B

12345678910111213
  1. export type AdminCapability =
  2. | 'clear-saml-data'
  3. | 'modify-user-email'
  4. | 'view-project'
  5. export type AdminRole =
  6. | 'engagement'
  7. | 'engineering'
  8. | 'finance'
  9. | 'product'
  10. | 'sales'
  11. | 'support'
  12. | 'support_tier_1'