diff --git a/src/Core/IdentityServer/StaticClients.cs b/src/Core/IdentityServer/StaticClients.cs index c7fbbe43c3..d77989e0cc 100644 --- a/src/Core/IdentityServer/StaticClients.cs +++ b/src/Core/IdentityServer/StaticClients.cs @@ -59,11 +59,14 @@ namespace Bit.Core.IdentityServer } else if (id == "browser") { - // TODO + RedirectUris = new[] { "https://localhost:8080/sso-connector.html" }; + PostLogoutRedirectUris = new[] { "https://localhost:8080" }; + AllowedCorsOrigins = new[] { "https://localhost:8080" }; } else if (id == "cli") { - // TODO + RedirectUris = new[] { "bitwardencli://sso-callback" }; + PostLogoutRedirectUris = new[] { "bitwardencli://logged-out" }; } else if (id == "mobile") {