X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2FAuthorizedTagsCache.ts;h=0f702047702ce5cc92890f28679a9cafddacf1fc;hb=90293abb1042312652c22f8b8c468d99ec080c71;hp=747b7593e422d5ef123444170a6cbc470a8333b0;hpb=0638ddd26038a2a45707bc3d43460f09bd95701b;p=e-mobility-charging-stations-simulator.git diff --git a/src/charging-station/AuthorizedTagsCache.ts b/src/charging-station/AuthorizedTagsCache.ts index 747b7593..0f702047 100644 --- a/src/charging-station/AuthorizedTagsCache.ts +++ b/src/charging-station/AuthorizedTagsCache.ts @@ -64,6 +64,10 @@ export default class AuthorizedTagsCache { return this.getTags(file); } + public deleteAuthorizedTags(file: string): boolean { + return this.deleteTags(file); + } + private hasTags(file: string): boolean { return this.tagsCaches.has(file); }