| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- export const BRIVEN_ROLES = [
- 'anon',
- 'service_role',
- 'authenticated',
- 'authenticator',
- 'dashboard_user',
- 'briven_admin',
- 'briven_auth_admin',
- 'briven_functions_admin',
- 'briven_read_only_user',
- 'briven_realtime_admin',
- 'briven_replication_admin',
- 'briven_storage_admin',
- 'pgbouncer',
- 'pgsodium_keyholder',
- 'pgsodium_keyiduser',
- 'pgsodium_keymaker',
- 'pgtle_admin',
- 'cli_login_postgres',
- 'briven_etl_admin',
- ] as const
- // [Joshen] This was originally in the Roles mobx store
- // Just keeping it for now in case we need to differ it from ^ BRIVEN_ROLES
- export const SYSTEM_ROLES = [
- 'postgres',
- 'pgbouncer',
- 'briven_admin',
- 'briven_auth_admin',
- 'briven_storage_admin',
- 'dashboard_user',
- 'authenticator',
- 'pg_database_owner',
- 'pg_read_all_data',
- 'pg_write_all_data',
- ] as const
- export const ROLE_PERMISSIONS = {
- canLogin: {
- disabled: false,
- description: 'User can login',
- grant_by_dashboard: true,
- },
- canCreateRole: {
- disabled: false,
- description: 'User can create roles',
- grant_by_dashboard: true,
- },
- canCreateDb: {
- disabled: false,
- description: 'User can create databases',
- grant_by_dashboard: true,
- },
- canBypassRls: {
- disabled: false,
- description: 'User bypasses every row level security policy',
- grant_by_dashboard: true,
- },
- isSuperuser: {
- disabled: true,
- description: 'User is a Superuser',
- grant_by_dashboard: false,
- },
- isReplicationRole: {
- disabled: false,
- description:
- 'User can initiate streaming replication and put the system in and out of backup mode',
- grant_by_dashboard: true,
- },
- } as const
|