1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-14 23:33:34 +00:00

pass OrgId to SSO login while using CME (#1646)

This commit is contained in:
Jake Fink
2021-11-16 09:34:26 -05:00
committed by GitHub
parent 13869b5a1b
commit 3ee80beda8
3 changed files with 6 additions and 6 deletions

View File

@@ -136,10 +136,10 @@ namespace Bit.Core.Services
null, captchaToken);
}
public async Task<AuthResult> LogInSsoAsync(string code, string codeVerifier, string redirectUrl)
public async Task<AuthResult> LogInSsoAsync(string code, string codeVerifier, string redirectUrl, string orgId)
{
SelectedTwoFactorProviderType = null;
return await LogInHelperAsync(null, null, null, code, codeVerifier, redirectUrl, null, null, null, null);
return await LogInHelperAsync(null, null, null, code, codeVerifier, redirectUrl, null, orgId: orgId);
}
public Task<AuthResult> LogInTwoFactorAsync(TwoFactorProviderType twoFactorProvider, string twoFactorToken,