7 lines
300 B
TypeScript
7 lines
300 B
TypeScript
/** Hard product limits — enforced in UI and DB triggers */
|
|
export const MAX_PHOTOS_PER_USER = 15;
|
|
export const MAX_ALBUMS_PER_USER = 5;
|
|
export const MAX_CANNED_MESSAGES = 20;
|
|
export const MAX_PHOTO_SIZE_MB = 8;
|
|
export const MAX_CANNED_MESSAGE_LENGTH = 500;
|
|
export const MAX_ALBUM_NAME_LENGTH = 40; |