1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-10 13:23:34 +00:00

[PM-3625] Remove ClientType.DirectoryConnector (#6099)

This commit is contained in:
Oscar Hinton
2023-09-14 16:29:46 +02:00
committed by GitHub
parent fc4379f392
commit 3507d318e5
4 changed files with 5 additions and 23 deletions

View File

@@ -17,7 +17,6 @@ export const LOGOUT_CALLBACK = new InjectionToken<
export const LOCKED_CALLBACK = new InjectionToken<(userId?: string) => Promise<void>>(
"LOCKED_CALLBACK"
);
export const CLIENT_TYPE = new InjectionToken<boolean>("CLIENT_TYPE");
export const LOCALES_DIRECTORY = new InjectionToken<string>("LOCALES_DIRECTORY");
export const SYSTEM_LANGUAGE = new InjectionToken<string>("SYSTEM_LANGUAGE");
export const LOG_MAC_FAILURES = new InjectionToken<string>("LOG_MAC_FAILURES");

View File

@@ -2,7 +2,7 @@ export enum ClientType {
Web = "web",
Browser = "browser",
Desktop = "desktop",
Mobile = "mobile",
// Mobile = "mobile",
Cli = "cli",
DirectoryConnector = "connector",
// DirectoryConnector = "connector",
}