Skip to Content

CONFIG_SECTION_CONSTANT

Default constraints for config section entities.

Defined in: src/shared/constant/config/section.constant.ts

Definition

src/shared/constant/config/section.constant.ts
const MAX_NAME_LENGTH: number = 128; const MAX_DESCRIPTION_LENGTH: number = 512; const DEFAULT_TABLE_NAME: string = "config_section"; export const CONFIG_SECTION_CONSTANT: { readonly DEFAULT_TABLE_NAME: string; readonly MAX_DESCRIPTION_LENGTH: number; readonly MAX_NAME_LENGTH: number; } = { DEFAULT_TABLE_NAME, MAX_DESCRIPTION_LENGTH, MAX_NAME_LENGTH, } as const;

Notes

  • Used as fallback defaults when generating the section entity at runtime.
Last updated on