diff --git a/common/src/services/auth.service.ts b/common/src/services/auth.service.ts index 75a1ee84..4ea1d932 100644 --- a/common/src/services/auth.service.ts +++ b/common/src/services/auth.service.ts @@ -95,11 +95,9 @@ export class AuthService implements AuthServiceAbstraction { const result = await this.processTokenResponse( response, - localHashedPassword, null, null, null, - key, null ); @@ -140,11 +138,9 @@ export class AuthService implements AuthServiceAbstraction { const result = await this.processTokenResponse( response, - null, code, null, null, - null, orgId ); @@ -180,10 +176,8 @@ export class AuthService implements AuthServiceAbstraction { const result = await this.processTokenResponse( response, null, - null, clientId, clientSecret, - null, null ); @@ -249,11 +243,9 @@ export class AuthService implements AuthServiceAbstraction { private async processTokenResponse( response: IdentityTokenResponse | IdentityTwoFactorResponse | IdentityCaptchaResponse, - localHashedPassword: string, code: string, clientId: string, clientSecret: string, - key: SymmetricCryptoKey, orgId?: string ): Promise { this.clearState();