Skip to content

Commit

Permalink
Merge pull request #385 from DuendeSoftware/joe/dynamic-schemes-typo
Browse files Browse the repository at this point in the history
Typo fix for "Dynamic"
  • Loading branch information
brockallen authored Dec 13, 2023
2 parents 1f919bf + 325193f commit 57343bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions IdentityServer/v5/docs/content/ui/login/dynamicproviders.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,15 @@ var providers = schemes
AuthenticationScheme = x.Name
}).ToList();

var dyanmicSchemes = (await _identityProviderStore.GetAllSchemeNamesAsync())
var dynamicSchemes = (await _identityProviderStore.GetAllSchemeNamesAsync())
.Where(x => x.Enabled)
.Select(x => new ExternalProvider
{
AuthenticationScheme = x.Scheme,
DisplayName = x.DisplayName
});

providers.AddRange(dyanmicSchemes);
providers.AddRange(dynamicSchemes);
```

### Store and Configuration Data
Expand Down

0 comments on commit 57343bb

Please sign in to comment.