summary refs log tree commit diff
path: root/src/util/config/Config.ts
diff options
context:
space:
mode:
authorSamuel <34555296+Flam3rboy@users.noreply.github.com>2023-03-18 04:11:48 +0100
committerSamuel <34555296+Flam3rboy@users.noreply.github.com>2023-03-18 04:11:48 +0100
commit366c4935a42d5056c51cdbd7c82c2674f1b8b128 (patch)
tree7c3cdc444536d8b1065c9f98d96355d0f5276704 /src/util/config/Config.ts
parentfix: package-lock.json (diff)
downloadserver-366c4935a42d5056c51cdbd7c82c2674f1b8b128.tar.xz
feat: Database Query Cache
Diffstat (limited to '')
-rw-r--r--src/util/config/Config.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/util/config/Config.ts b/src/util/config/Config.ts

index f130e760..3cd18d3d 100644 --- a/src/util/config/Config.ts +++ b/src/util/config/Config.ts
@@ -37,6 +37,7 @@ import { SecurityConfiguration, SentryConfiguration, TemplateConfiguration, + CacheConfiguration, } from "../config"; export class ConfigValue { @@ -61,4 +62,5 @@ export class ConfigValue { email: EmailConfiguration = new EmailConfiguration(); passwordReset: PasswordResetConfiguration = new PasswordResetConfiguration(); + cache: CacheConfiguration = new CacheConfiguration(); }