mirror of
https://github.com/bitwarden/server
synced 2026-02-08 04:33:23 +00:00
fix(redirect): [PM-30810] Https Redirection for Cloud Users - Added new urls for mobile to be allowed through for sso redirection.
This commit is contained in:
@@ -82,7 +82,12 @@ public class ApiClient : Client
|
||||
}
|
||||
else if (id == "mobile")
|
||||
{
|
||||
RedirectUris = new[] { "bitwarden://sso-callback" };
|
||||
RedirectUris = new[] {
|
||||
"bitwarden://sso-callback",
|
||||
"https://bitwarden.com/sso-callback",
|
||||
"https://bitwarden.eu/sso-callback",
|
||||
"https://bitwarden.pw/sso-callback",
|
||||
};
|
||||
PostLogoutRedirectUris = new[] { "bitwarden://logged-out" };
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user