mirror of
https://github.com/bitwarden/directory-connector
synced 2026-02-26 17:23:15 +00:00
26 lines
765 B
TypeScript
26 lines
765 B
TypeScript
import * as program from "commander";
|
|
|
|
import { StateService } from "@/libs/abstractions/state.service";
|
|
|
|
import { I18nService } from "@/jslib/common/src/abstractions/i18n.service";
|
|
|
|
import { Response } from "@/src-cli/cli/models/response";
|
|
import { MessageResponse } from "@/src-cli/cli/models/response/messageResponse";
|
|
|
|
export class ClearCacheCommand {
|
|
constructor(
|
|
private i18nService: I18nService,
|
|
private stateService: StateService,
|
|
) {}
|
|
|
|
async run(cmd: program.OptionValues): Promise<Response> {
|
|
try {
|
|
await this.stateService.clearSyncSettings(true);
|
|
const res = new MessageResponse(this.i18nService.t("syncCacheCleared"), null);
|
|
return Response.success(res);
|
|
} catch (e) {
|
|
return Response.error(e);
|
|
}
|
|
}
|
|
}
|