source: sources/client/src/config/enums.js@ e8b1076

Last change on this file since e8b1076 was 3a58bd6, checked in by Viktor <39170279+Tasevski2@…>, 3 years ago

Added Frontend

  • Property mode set to 100644
File size: 413 bytes
Line 
1export const employeeStatus = {
2 notWorking: 'Не работи',
3 working: 'Работи',
4 vacation: 'На одмор',
5};
6
7export const accountStatus = {
8 enabled: 'Активен',
9 disabled: 'Неактивен',
10};
11
12export const sessionStatus = {
13 active: 'active',
14 idle: 'idle',
15 over: 'over',
16};
17
18export const roles = {
19 user: 'ROLE_USER',
20 employee: 'ROLE_EMPLOYEE',
21 admin: 'ROLE_ADMIN',
22};
Note: See TracBrowser for help on using the repository browser.