Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: include more items on the sidebar #1887

Merged
merged 3 commits into from
Sep 23, 2024
Merged
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 docs/getting-started/ory-network-oauth2.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: Perform OAuth2 Authorization Code Grant and Client Credentials Grant
sidebar_label: Try it
---

# Try out common OAuth2 Grants
# Try common OAuth2 Grants

[Ory OAuth2 & OpenID Connect](https://www.ory.sh/federated-identity-management/) (based on
[Ory Hydra](https://github.com/ory/hydra)) is available in the Ory Network out of the box. This means that you can use OIDC,
Expand Down
11 changes: 11 additions & 0 deletions docs/guides/authentication.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
id: authentication
title: Authentication & Login
---

```mdx-code-block
import DocCardList from '@theme/DocCardList';
import {useCurrentSidebarCategory} from '@docusaurus/theme-common';

<DocCardList items={useCurrentSidebarCategory().items}/>
aeneasr marked this conversation as resolved.
Show resolved Hide resolved
```
11 changes: 11 additions & 0 deletions docs/guides/email-sms.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
id: email-sms
title: Email and SMS
---

```mdx-code-block
import DocCardList from '@theme/DocCardList';
import {useCurrentSidebarCategory} from '@docusaurus/theme-common';

<DocCardList items={useCurrentSidebarCategory().items}/>
```
12 changes: 12 additions & 0 deletions docs/guides/oauth2-openid-connect.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
id: oauth2-openid-connect
slug: oauth2-oidc
title: OAuth2 and OpenID Connect
---

```mdx-code-block
import DocCardList from '@theme/DocCardList';
import {useCurrentSidebarCategory} from '@docusaurus/theme-common';

<DocCardList items={useCurrentSidebarCategory().items}/>
```
11 changes: 11 additions & 0 deletions docs/quickstart/sdks.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
id: sdks
title: SDK quickstarts
---

```mdx-code-block
import DocCardList from '@theme/DocCardList';
import {useCurrentSidebarCategory} from '@docusaurus/theme-common';

<DocCardList items={useCurrentSidebarCategory().items}/>
```
Loading
Loading