Add AppConstants
This commit is contained in:
parent
8a820d4cd3
commit
1730c1d56f
20
src/front/Config/AppConstants.ts
Normal file
20
src/front/Config/AppConstants.ts
Normal file
@ -0,0 +1,20 @@
|
||||
/**
|
||||
* Application-wide constants
|
||||
* This file contains constants that are used across multiple components and services
|
||||
*/
|
||||
|
||||
export const APP_CONSTANTS = {
|
||||
/**
|
||||
* Default validator ID used for creating various entities (customers, documents, roles, etc.)
|
||||
* This is a system-level validator that has permissions to create and manage entities
|
||||
*/
|
||||
DEFAULT_VALIDATOR_ID: 'c87bbb4873fd4c8427655b083b098c4b3f3a8ebf436d286b69c8036db4a2a029:0',
|
||||
} as const;
|
||||
|
||||
// Export individual constants for easier imports
|
||||
export const DEFAULT_VALIDATOR_ID = APP_CONSTANTS.DEFAULT_VALIDATOR_ID;
|
||||
|
||||
// Define
|
||||
export const DEFAULT_STORAGE_URLS = [
|
||||
'https://dev3.4nkweb.com/storage'
|
||||
] as const;
|
Loading…
x
Reference in New Issue
Block a user