1
0
mirror of https://github.com/bitwarden/directory-connector synced 2025-12-05 23:53:21 +00:00

[bug] Remove redundant state clean call (#214)

* [bug] Remove redundant state clean call

* [refactor] Remove logout override
This commit is contained in:
Addison Beck
2022-01-27 08:12:48 -05:00
committed by GitHub
parent 9e3d1caee4
commit d1b182d20b

View File

@@ -66,11 +66,6 @@ export class AuthService extends AuthServiceBase {
return await super.logInApiKey(clientId, clientSecret);
}
async logOut(callback: Function) {
this.stateService.clean();
super.logOut(callback);
}
private async organizationLogInHelper(clientId: string, clientSecret: string) {
const appId = await this.appIdService.getAppId();
const entityId = clientId.split("organization.")[1];