🔧(backend) expose TRASHBIN_CUTOFF_DAYS

To know when a document in the trashbin will be
permanently deleted.
This commit is contained in:
Anthony LC
2025-10-03 12:37:37 +02:00
parent ed336558ac
commit 5bdf5d2210
4 changed files with 5 additions and 1 deletions

View File

@@ -23,6 +23,7 @@ export const CONFIG = {
LANGUAGE_CODE: 'en-us',
POSTHOG_KEY: {},
SENTRY_DSN: null,
TRASHBIN_CUTOFF_DAYS: 30,
theme_customization: {},
} as const;

View File

@@ -27,6 +27,7 @@ export interface ConfigResponse {
MEDIA_BASE_URL?: string;
POSTHOG_KEY?: PostHogConf;
SENTRY_DSN?: string;
TRASHBIN_CUTOFF_DAYS?: number;
theme_customization?: ThemeCustomization;
}