Impersination backend

This commit is contained in:
Bastian Wagner
2026-02-20 13:17:58 +01:00
parent affea90e91
commit 62520466dc
11 changed files with 118 additions and 37 deletions

View File

@@ -11,7 +11,7 @@ export class HelperService {
private readonly systemRepository: KeySystemRepository,
private readonly cylinderRepository: CylinderRepository,
private readonly keyRepo: KeyRepository,
private cacheManager: Cache
// private cacheManager: Cache
) {}
@@ -61,11 +61,11 @@ export class HelperService {
}
async cache() {
const value = await this.cacheManager.store.keys()
console.log(value)
// const value = await this.cacheManager.store.keys()
// console.log(value)
}
async deleteKeyArchiveCache() {
await this.cacheManager.del('/key/archive');
// await this.cacheManager.del('/key/archive');
}
}