export const employeeStatus = { notWorking: 'Не работи', working: 'Работи', vacation: 'На одмор', }; export const accountStatus = { enabled: 'Активен', disabled: 'Неактивен', }; export const sessionStatus = { active: 'active', idle: 'idle', over: 'over', }; export const roles = { user: 'ROLE_USER', employee: 'ROLE_EMPLOYEE', admin: 'ROLE_ADMIN', };