diff --git a/src/front/Config/AppConstants.ts b/src/front/Config/AppConstants.ts new file mode 100644 index 00000000..1663c182 --- /dev/null +++ b/src/front/Config/AppConstants.ts @@ -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;