From aa1665065d91856ee0e942f16ddf20dd89aec612 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 28 Jul 2020 22:49:13 -0400 Subject: [PATCH] add missing RedirectUris (#840) --- src/Core/IdentityServer/StaticClients.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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") {