1
0
mirror of https://github.com/bitwarden/server.git synced 2025-01-22 21:51:22 +01:00

add missing RedirectUris (#840)

This commit is contained in:
Kyle Spearrin 2020-07-28 22:49:13 -04:00 committed by GitHub
parent 68915a452e
commit aa1665065d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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")
{