Skip to content

Commit 29b7f24

Browse files
Update link exclusions and fix internal documentation references for IdentityServer paths
1 parent 8de7eeb commit 29b7f24

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

astro/astro.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ export default defineConfig({
115115
errorOnInconsistentLocale: true,
116116
errorOnRelativeLinks: false,
117117
errorOnLocalLinks: false,
118-
exclude: ["/reference/**"],
118+
exclude: ["/identityserver/reference/**"],
119119
}),
120120
],
121121
title: "Duende Software Docs",

astro/src/content/docs/identityserver/reference/v8/services/ciba-interaction-service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ All async methods accept a `CancellationToken ct` parameter.
2828

2929
* **`GetLoginRequestByInternalIdAsync(string id, CancellationToken ct)`**
3030

31-
Returns the [BackchannelUserLoginRequest](/docs/identityserver-v8/reference/models/ciba-login-request) object for the id.
31+
Returns the [BackchannelUserLoginRequest](/identityserver/reference/v8/models/ciba-login-request) object for the id.
3232

3333
* **`CompleteLoginRequestAsync(CompleteBackchannelLoginRequest completionRequest, CancellationToken ct)`**
3434

astro/src/content/docs/identityserver/reference/v8/services/user-session-service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ client list in the authentication properties.
4848
| Task<IReadOnlyCollection<SamlSpSessionData>> GetSamlSessionListAsync(CancellationToken ct) | Gets the list of SAML SP sessions for the user's session. <span data-shb-badge data-shb-badge-variant="default">Added in 8.0</span> |
4949
| Task RemoveSamlSessionAsync(string entityId, CancellationToken ct) | Removes a SAML SP session by EntityId. <span data-shb-badge data-shb-badge-variant="default">Added in 8.0</span> |
5050

51-
The three SAML session methods (`AddSamlSessionAsync`, `GetSamlSessionListAsync`, `RemoveSamlSessionAsync`) are used by the [SAML 2.0 Identity Provider](/docs/identityserver-v8/saml/) feature. If you have a custom `IUserSession` implementation but are not using SAML, these methods can return `Task.CompletedTask` or an empty collection as appropriate.
51+
The three SAML session methods (`AddSamlSessionAsync`, `GetSamlSessionListAsync`, `RemoveSamlSessionAsync`) are used by the [SAML 2.0 Identity Provider](/identityserver/saml/) feature. If you have a custom `IUserSession` implementation but are not using SAML, these methods can return `Task.CompletedTask` or an empty collection as appropriate.
5252

5353
#### GetUserAsync
5454

0 commit comments

Comments
 (0)