16 lines
519 B
JavaScript
16 lines
519 B
JavaScript
export const ROLS_GLOBALS = {
|
|
ADMINISTRADOR: 'admin',
|
|
USUARI: 'usuari'
|
|
}; // as const;
|
|
|
|
// export type GlobalRolesKeys = keyof typeof GLOBAL_ROLES;
|
|
// export type GlobalRolesValues = (typeof GLOBAL_ROLES)[GlobalRolesKeys];
|
|
|
|
export const ROLS_DE_POBLE = {
|
|
MONITOR: 'monitor_de_poble',
|
|
ENCARREGAT: 'encarregat_de_tasques',
|
|
VOLUNTARI: 'voluntari_de_poble'
|
|
}; // as const;
|
|
|
|
// export type TeamRolesKeys = keyof typeof TEAM_ROLES;
|
|
// export type TeamRolesValues = (typeof TEAM_ROLES)[TeamRolesKeys];
|