Files
trackgo-fe/apps/web/src/core/constants/module-key.ts
T
shancheas b22ce99840 feat: introduce users management module with CRUD functionality
- Added a new Users module, including routes for creating, editing, and viewing user details.
- Implemented UI components for user forms and detail views, with validation schemas for user data.
- Integrated language support for English and Indonesian in the users module.
- Developed unit tests for user remote data services and transformers to ensure functionality and reliability.

These changes enhance the application by providing a structured approach to user management, improving user experience and data handling.
2026-08-27 10:35:50 +07:00

13 lines
422 B
TypeScript

export const MODULE_KEY = {
PRIVILEGES: 'PRIVILEGES',
USERS: 'USERS',
CONFIGURATION_DIVISION: 'CONFIGURATION.DIVISION',
CONFIGURATION_BRANCH: 'CONFIGURATION.BRANCH',
CONFIGURATION_CUSTOMER: 'CONFIGURATION.CUSTOMER',
CONFIGURATION_EMPLOYEE: 'CONFIGURATION.EMPLOYEE',
SALES_CYCLE: 'SALES.CYCLE',
SALES_PLAN: 'SALES.PLAN',
LOGISTICS_CYCLE: 'LOGISTICS.CYCLE',
LOGISTICS_PLAN: 'LOGISTICS.PLAN',
} as const;