Skip to content

Commit

Permalink
fix: sidebar ids/slugs
Browse files Browse the repository at this point in the history
  • Loading branch information
vinckr committed Sep 2, 2024
1 parent 1f8f7d2 commit 960a787
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 16 deletions.
1 change: 1 addition & 0 deletions docs/guides/ip-allowlist.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
id: ip-allowlist
title: Configure Ory Network IP addresses as allow list
sidebar_label: Ory Network IP Addresses
slug: allowlist
---

To enhance your security measures while using the Ory Network, we've narrowed down the source IP addresses for all of our egress
Expand Down
2 changes: 1 addition & 1 deletion docs/kratos/bring-your-own-ui/01_overview.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
id: index
id: custom-ui-overview
title: Custom UI overview
sidebar_label: Overview
---
Expand Down
2 changes: 1 addition & 1 deletion docs/kratos/mfa/30_sms.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
id: sms
id: mfa-via-sms
title: SMS and Email 2FA
sidebar_label: SMS and Email
---
Expand Down
2 changes: 1 addition & 1 deletion docs/kratos/passwordless/00_overview.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
id: overview
id: passwordless
title: Use passwordless WebAuthN to protect against phishing attacks
sidebar_label: Passwordless
---
Expand Down
2 changes: 1 addition & 1 deletion docs/kratos/passwordless/06_code.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
id: code
id: one-time-code
title: Passwordless authentication with one-time code
sidebar_label: One-time code
---
Expand Down
3 changes: 2 additions & 1 deletion docs/kratos/self-service/flows/user-registration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,8 @@ curl -s -X GET \

## Registration form payloads

Fetching the Registration Flow ([REST API Reference](../../reference/api.mdx#get-registration-flow)) is usually only required for
Fetching the Registration Flow
([REST API Reference](../../reference/api.mdx#tag/frontend/operation/createBrowserRegistrationFlow)) is usually only required for
browser clients but also works for Registration Flows initialized by API clients. All you need is a valid Registration Flow ID:

```shell-session
Expand Down
4 changes: 0 additions & 4 deletions docs/kratos/social-signin/30_apple.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,3 @@ import SocialSigninTroubleshooting from '../_common/social-sign-in-troubleshooti
Make sure to either add your apps current identifier to the `additional_id_token_audiences` field or set it as the Client ID of
the provider in the Ory Console.
```
```
6 changes: 3 additions & 3 deletions docs/troubleshooting/11_actions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ If an Ory Action webhook fails to trigger, verify whether the **sign in after re
the `session` hook modifies the HTTP response, no other hooks are executed after it. If you want to execute other hooks besides
the `session` hook, you need to make sure that it is executed last.

To debug this issue, [export the Ory Identities configuration](../guides/cli/config-identity-service) and check the order of the
actions. The `session` hook should be the last one to run.
To debug this issue, [export the Ory Identities configuration](../guides/cli/15_config-identity-service.mdx) and check the order
of the actions. The `session` hook should be the last one to run.

For more information on the `session` hook, see [Sign in after registration](../actions/session) documentation.
For more information on the `session` hook, see [Sign in after registration](../actions/session.mdx) documentation.
8 changes: 4 additions & 4 deletions src/sidebar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ const guidesSidebar = {
"kratos/concepts/credentials/username-email-password",
"kratos/passwordless/passkeys",
"kratos/passwordless/webauthn",
"kratos/passwordless/code",
"kratos/passwordless/one-time-code",
"kratos/organizations/organizations",
{
type: "category",
Expand Down Expand Up @@ -223,7 +223,7 @@ const guidesSidebar = {
"kratos/mfa/lookup-secrets",
"kratos/mfa/totp",
"kratos/mfa/webauthn-fido-yubikey",
"kratos/mfa/sms",
"kratos/mfa/mfa-via-sms",
"kratos/mfa/step-up-authentication",
],
},
Expand Down Expand Up @@ -456,7 +456,7 @@ const identitiesSidebar = {
},
items: [
"concepts/password-policy",
"kratos/passwordless/overview",
"kratos/passwordless/passwordless",
"kratos/mfa/overview",
],
},
Expand All @@ -467,7 +467,7 @@ const identitiesSidebar = {
collapsible: false,
link: {
type: "doc",
id: "kratos/bring-your-own-ui/index",
id: "kratos/bring-your-own-ui/custom-ui-overview",
},
items: [
"account-experience/index",
Expand Down

0 comments on commit 960a787

Please sign in to comment.