1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 21:18:13 -05:00

add login redirect url to identity server (#4092)

This commit is contained in:
Jake Fink 2024-05-16 15:47:44 -04:00 committed by GitHub
parent 7d65d8dd4f
commit 3bb8cce2e6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -39,6 +39,7 @@ public static class ServiceCollectionExtensions
} }
options.InputLengthRestrictions.UserName = 256; options.InputLengthRestrictions.UserName = 256;
options.KeyManagement.Enabled = false; options.KeyManagement.Enabled = false;
options.UserInteraction.LoginUrl = "/sso/Login";
}) })
.AddInMemoryCaching() .AddInMemoryCaching()
.AddInMemoryApiResources(ApiResources.GetApiResources()) .AddInMemoryApiResources(ApiResources.GetApiResources())