fix: bug in the sliders and blog module

This commit is contained in:
mahyargdz
2025-04-13 10:30:59 +03:30
parent cac2620fc6
commit 78f481871c
14 changed files with 219 additions and 10 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ export function cacheConfig(): CacheModuleAsyncOptions {
useFactory: async (configService: ConfigService) => {
return {
ttl: configService.getOrThrow<string>("CACHE_TTL"),
stores: [new KeyvRedis(configService.getOrThrow<string>("REDIS_URI"))],
stores: [new KeyvRedis(configService.getOrThrow<string>("REDIS_URI"), { namespace: "danak-console:" })],
};
},
};