From 1bd968a0234f61e0d873da6017008db067b2e491 Mon Sep 17 00:00:00 2001 From: Matt Gibson Date: Thu, 28 Oct 2021 10:03:03 -0500 Subject: [PATCH] Pass in null for sso organziation for now. (#531) This will bypass cryptoagent --- node/src/cli/commands/login.command.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/src/cli/commands/login.command.ts b/node/src/cli/commands/login.command.ts index 33b19eb1de..6ed398e470 100644 --- a/node/src/cli/commands/login.command.ts +++ b/node/src/cli/commands/login.command.ts @@ -151,7 +151,7 @@ export class LoginCommand { if (clientId != null && clientSecret != null) { response = await this.authService.logInApiKey(clientId, clientSecret); } else if (ssoCode != null && ssoCodeVerifier != null) { - response = await this.authService.logInSso(ssoCode, ssoCodeVerifier, this.ssoRedirectUri); + response = await this.authService.logInSso(ssoCode, ssoCodeVerifier, this.ssoRedirectUri, null); } else { response = await this.authService.logIn(email, password); }