File tree Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -403,6 +403,19 @@ public class Config
403
403
404
404
// oidc login only
405
405
new Client
406
+ {
407
+ ClientId = "interactive.implicit" ,
408
+
409
+ RedirectUris = { "https://notused" } ,
410
+ PostLogoutRedirectUris = { "https://notused" } ,
411
+
412
+ AllowedGrantTypes = GrantTypes . Implicit ,
413
+ AllowedScopes = AllIdentityScopes ,
414
+ } ,
415
+
416
+ // oidc login only - legacy client name. Keep until end of 2026
417
+ // to not break existing demos.
418
+ new Client
406
419
{
407
420
ClientId = "login" ,
408
421
Original file line number Diff line number Diff line change 168
168
</p >
169
169
170
170
<div id =" accordion" class =" mb-3" >
171
- @foreach ( var clients in Config .Clients .GroupBy (it => it .ClientId .Split ('.' , StringSplitOptions .TrimEntries ).First ()))
171
+ @*
172
+ We have a legacy login client that has been used in various demos. It's now renamed to interactive.implicit, but we need to have the
173
+ old entry around for some time, but don't want to show it any more. The login client and the .Where(g => g.Key != "login") can be removed after 2026.
174
+ *@
175
+ @foreach ( var clients in Config .Clients .GroupBy (it => it .ClientId .Split ('.' , StringSplitOptions .TrimEntries ).First ()).Where (g => g .Key != " login" ))
172
176
{
173
177
<div class =" card mb-2" >
174
178
<
div id =
" [email protected] " class =
" card-header bg-light shadow-sm border-0" >
You can’t perform that action at this time.
0 commit comments