From 7e9330559bc5e66731f48349cf054dd709afe35f Mon Sep 17 00:00:00 2001 From: Thomas Rittson Date: Mon, 20 Dec 2021 10:39:12 +1000 Subject: [PATCH] Remove unneeded args --- common/src/services/auth.service.ts | 8 -------- 1 file changed, 8 deletions(-) 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();