From 3bb8cce2e61d56b8aa0c0420f873e2b9747a77b6 Mon Sep 17 00:00:00 2001 From: Jake Fink Date: Thu, 16 May 2024 15:47:44 -0400 Subject: [PATCH] add login redirect url to identity server (#4092) --- src/Identity/Utilities/ServiceCollectionExtensions.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Identity/Utilities/ServiceCollectionExtensions.cs b/src/Identity/Utilities/ServiceCollectionExtensions.cs index 6674e0c3b4..95002d8371 100644 --- a/src/Identity/Utilities/ServiceCollectionExtensions.cs +++ b/src/Identity/Utilities/ServiceCollectionExtensions.cs @@ -39,6 +39,7 @@ public static class ServiceCollectionExtensions } options.InputLengthRestrictions.UserName = 256; options.KeyManagement.Enabled = false; + options.UserInteraction.LoginUrl = "/sso/Login"; }) .AddInMemoryCaching() .AddInMemoryApiResources(ApiResources.GetApiResources())