Skip to content

Commit

Permalink
fix: orphaned pages (#1496)
Browse files Browse the repository at this point in the history
  • Loading branch information
vinckr authored Aug 10, 2023
1 parent fd1c7d3 commit f1294f6
Show file tree
Hide file tree
Showing 7 changed files with 49 additions and 49 deletions.
2 changes: 1 addition & 1 deletion docs/kratos/guides/e2e-integration-tests.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
id: e2e-integration-tests
title: Writing end-to-end and integration tests
title: End-to-end and integration tests
---

We run integration tests for both the [Node.js](https://github.com/ory/kratos-selfservice-ui-node) and
Expand Down
43 changes: 0 additions & 43 deletions docs/kratos/guides/security-questions.mdx

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ toc_max_heading_level: 3

# Export identities

Ory allows you to export identities including their credentials using the `include_credential` attribute on the `getIdentity`
method:
Ory Identities allows you to export identities including their hashed credentials using the `include_credential` attribute on the
[`getIdentity` method](http://localhost:3000/docs/reference/api#tag/identity/operation/getIdentity):

```go
package pkg
Expand Down
2 changes: 1 addition & 1 deletion docs/kratos/self-hosted/03_mail-courier-http.mdx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
id: email-http
title: Mail API courier in self-hosted Ory Kratos
sidebar_label: Sending mail by HTTP
sidebar_label: Sending emails
---

For sending Email by using an external mail provider instead of a local SMTP server, Ory Kratos can use a HTTP API (such as
Expand Down
8 changes: 8 additions & 0 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,10 @@ const config = {
to: "https://www.ory.sh/support",
label: "Enterprise Support",
},
{
to: "https://www.ory.sh/docs/search",
label: "Search the docs",
},
{
to: "https://www.ory.sh/chat",
label: "Ory Community Slack",
Expand Down Expand Up @@ -151,6 +155,10 @@ const config = {
label: "Need Support?",
href: "https://www.ory.sh/support/",
},
{
label: "Search",
href: "https://www.ory.sh/docs/search/",
},
{
label: "Status",
href: "https://status.ory.sh/",
Expand Down
34 changes: 32 additions & 2 deletions src/sidebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ module.exports = {
"identities/model/identity-state",
"kratos/manage-identities/invite-users",
"kratos/manage-identities/account-recovery",
"kratos/manage-identities/export-user-accounts-identities",
],
},
"kratos/self-service/flows/user-logout",
Expand Down Expand Up @@ -322,7 +323,10 @@ module.exports = {
{
type: "category",
label: "Guidelines",
items: ["open-source/guidelines/rest-api-guidelines"],
items: [
"open-source/guidelines/rest-api-guidelines",
"kratos/guides/e2e-integration-tests",
],
},
],
},
Expand Down Expand Up @@ -368,6 +372,11 @@ module.exports = {
},
],
},
{
type: "link",
label: "Search",
href: "https://www.ory.sh/docs/search",
},
],
selfhosting: [
"ecosystem/projects",
Expand All @@ -383,7 +392,10 @@ module.exports = {
{
type: "category",
label: "Guidelines",
items: ["open-source/guidelines/rest-api-guidelines"],
items: [
"open-source/guidelines/rest-api-guidelines",
"kratos/guides/e2e-integration-tests",
],
},
],
},
Expand Down Expand Up @@ -437,6 +449,8 @@ module.exports = {
"kratos/guides/production",
"kratos/guides/multi-tenancy-multitenant",
"self-hosted/operations/scalability",
"kratos/self-hosted/email-http",
"kratos/self-hosted/mail-courier-templates",
"kratos/guides/tracing",
"kratos/guides/zero-trust-iap-proxy-identity-access-proxy",
"kratos/guides/https-tls",
Expand Down Expand Up @@ -616,14 +630,25 @@ module.exports = {
},
],
},
{
type: "link",
label: "Search",
href: "https://www.ory.sh/docs/search",
},
],
api: [
"api/index",
"concepts/personal-access-token",
"ecosystem/api-design",
"concepts/cache",
"reference/api",
{
type: "link",
label: "Search",
href: "https://www.ory.sh/docs/search",
},
],

sdk: [
"sdk",
{
Expand Down Expand Up @@ -677,5 +702,10 @@ module.exports = {
},
],
},
{
type: "link",
label: "Search",
href: "https://www.ory.sh/docs/search",
},
],
}
5 changes: 5 additions & 0 deletions vercel.json
Original file line number Diff line number Diff line change
Expand Up @@ -1128,6 +1128,11 @@
"source": "/docs/kratos/concepts",
"destination": "/docs/kratos",
"permanent": false
},
{
"source": "/docs/kratos/guides/security-questions-best-practice",
"destination": "/docs/kratos/concepts/security",
"permanent": false
}
]
}

0 comments on commit f1294f6

Please sign in to comment.