1 files changed, 1 insertions, 0 deletions
diff --git a/src/util/config/types/CdnConfiguration.ts b/src/util/config/types/CdnConfiguration.ts
index b0121c372..e821e7ab8 100644
--- a/src/util/config/types/CdnConfiguration.ts
+++ b/src/util/config/types/CdnConfiguration.ts
@@ -23,4 +23,5 @@ export class CdnConfiguration extends EndpointConfiguration {
resizeWidthMax: number = 1000;
imagorServerUrl: string | null = null;
proxyCacheHeaderSeconds: number = 60 * 60 * 24;
+ maxAttachmentSize: number = 25 * 1024 * 1024; // 25 MB
}
|