Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | 29x 29x 29x | export const ROLES = {
ADMIN: 'Admin',
PRODUCT_MANAGER: 'ProductManager',
RELEASE_ENGINEER: 'ReleaseEngineer',
DASHBOARD_USER: 'DashboardUser',
};
export const ROLE_LABELS = {
[ROLES.ADMIN]: 'Administrator',
[ROLES.PRODUCT_MANAGER]: 'Product Manager',
[ROLES.RELEASE_ENGINEER]: 'Release Engineer',
[ROLES.DASHBOARD_USER]: 'Dashboard User',
};
export const ROUTE_PERMISSIONS = {
'/experiments': [],
'/targets': [],
'/templates': [ROLES.ADMIN],
'/splits': [ROLES.ADMIN, ROLES.PRODUCT_MANAGER, ROLES.DASHBOARD_USER],
'/me-groups': [],
'/environments': [],
};
export default ROLES;
|