fix: remove extra v2 within us/euUrls, refs AC-1518 (#5825)

This commit is contained in:
Vincent Salucci 2023-07-14 14:19:57 -05:00 committed by GitHub
parent b2374acc7f
commit c3adf96da7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ export class EnvironmentService implements EnvironmentServiceAbstraction {
webVault: "https://vault.bitwarden.com",
notifications: "https://notifications.bitwarden.com",
events: "https://events.bitwarden.com",
scim: "https://scim.bitwarden.com/v2",
scim: "https://scim.bitwarden.com",
};
readonly euUrls: Urls = {
@ -44,7 +44,7 @@ export class EnvironmentService implements EnvironmentServiceAbstraction {
webVault: "https://vault.bitwarden.eu",
notifications: "https://notifications.bitwarden.eu",
events: "https://events.bitwarden.eu",
scim: "https://scim.bitwarden.eu/v2",
scim: "https://scim.bitwarden.eu",
};
constructor(private stateService: StateService) {