Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<AspireVersion>9.4.0</AspireVersion>
<AspireUnstablePackagesVersion>9.4.0-preview.1.25378.8</AspireUnstablePackagesVersion>
<GrpcVersion>2.71.0</GrpcVersion>
<DuendeVersion>7.1.1</DuendeVersion>
<DuendeVersion>7.3.0</DuendeVersion>
<ApiVersioningVersion>8.1.0</ApiVersioningVersion>
</PropertyGroup>
<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/Identity.API/Configuration/Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public static IEnumerable<ApiResource> GetApis()
}

// ApiScope is used to protect the API
//The effect is the same as that of API resources in IdentityServer 3.x
// The effect is the same as that of API resources in IdentityServer 3.x
public static IEnumerable<ApiScope> GetApiScopes()
{
return new List<ApiScope>
Expand All @@ -26,7 +26,7 @@ public static IEnumerable<ApiScope> GetApiScopes()
}

// Identity resources are data like user ID, name, or email address of a user
// see: http://docs.identityserver.io/en/release/configuration/resources.html
// see: https://docs.duendesoftware.com/identityserver/fundamentals/resources/identity/
public static IEnumerable<IdentityResource> GetResources()
{
return new List<IdentityResource>
Expand Down
2 changes: 1 addition & 1 deletion src/Identity.API/Views/Account/Logout.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div class="logout-page">
<div class="lead">
<h1>Logout</h1>
<p>Would you like to logut of IdentityServer?</p>
<p>Would you like to logout of IdentityServer?</p>
</div>

<form asp-action="Logout">
Expand Down
7 changes: 4 additions & 3 deletions src/Identity.API/Views/Home/Index.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<div class="welcome-page">
<h1>
<img src="~/icon.jpg">
Welcome to IdentityServer4
Welcome to Duende IdentityServer
<small class="text-muted">(version @version)</small>
</h1>

Expand All @@ -25,8 +25,9 @@
</li>
<li>
Here are links to the
<a href="https://github.com/identityserver/IdentityServer4">source code repository</a>,
and <a href="https://github.com/IdentityServer/IdentityServer4/tree/main/samples">ready to use samples</a>.
<a href="https://github.com/duendesoftware/products">source code repository</a>,
<a href="https://github.com/duendesoftware/samples">ready to use samples</a>,
and <a href="https://docs.duendesoftware.com">documentation</a>.
</li>
</ul>
</div>