Pass in null for sso organziation for now. (#531)
This will bypass cryptoagent
This commit is contained in:
parent
e90cc40f68
commit
1bd968a023
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue