fixes the web client auth

This commit is contained in:
Paul Schneider
2025-02-26 19:44:54 +00:00
parent 804a4738ea
commit db9994b05a

View File

@ -77,10 +77,8 @@ public static class Config
RedirectUris = { "https://localhost:5003/signin-oidc", RedirectUris = { "https://localhost:5003/signin-oidc",
"http://localhost:5002/signin-oidc" }, "http://localhost:5002/signin-oidc" },
PostLogoutRedirectUris = { PostLogoutRedirectUris = { "https://localhost:5003/signout-callback-oidc",
"http://localhost:5002/signout-callback-oidc", "http://localhost:5002/signout-callback-oidc" },
"https://localhost:5003/signout-callback-oidc" },
AllowedScopes = { AllowedScopes = {
IdentityServerConstants.StandardScopes.OpenId, IdentityServerConstants.StandardScopes.OpenId,
@ -88,10 +86,6 @@ public static class Config
IdentityServerConstants.StandardScopes.Email, IdentityServerConstants.StandardScopes.Email,
IdentityServerConstants.StandardScopes.OfflineAccess, IdentityServerConstants.StandardScopes.OfflineAccess,
"scope2" } "scope2" }
,
AllowedCorsOrigins=new string[]{"*"},
AllowRememberConsent=true
}, },
}; };