Skip to content

Commit

Permalink
chore(console): update sdk doc reference links (#5860)
Browse files Browse the repository at this point in the history
  • Loading branch information
charIeszhao authored May 14, 2024
1 parent 5660c54 commit a6582b2
Show file tree
Hide file tree
Showing 24 changed files with 24 additions and 24 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const metadata: Readonly<GuideMetadata> = Object.freeze({
isFeatured: true,
fullGuide: {
title: 'Full machine-to-machine integration tutorial',
url: 'https://docs.logto.io/sdk/m2m',
url: 'https://docs.logto.io/quick-starts/m2m',
},
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const metadata: Readonly<GuideMetadata> = Object.freeze({
},
fullGuide: {
title: 'Full Android SDK tutorial',
url: 'https://docs.logto.io/sdk/android',
url: 'https://docs.logto.io/quick-starts/android',
},
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const metadata: Readonly<GuideMetadata> = Object.freeze({
},
fullGuide: {
title: 'Full Expo (React Native) guide',
url: 'https://docs.logto.io/sdk/expo',
url: 'https://docs.logto.io/quick-starts/expo',
},
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const metadata: Readonly<GuideMetadata> = Object.freeze({
},
fullGuide: {
title: 'Full Angular guide',
url: 'https://docs.logto.io/sdk/angular',
url: 'https://docs.logto.io/quick-starts/angular',
},
});

Expand Down
2 changes: 1 addition & 1 deletion packages/console/src/assets/docs/guides/spa-react/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const metadata: Readonly<GuideMetadata> = Object.freeze({
isFeatured: true,
fullGuide: {
title: 'Full React SDK tutorial',
url: 'https://docs.logto.io/sdk/react',
url: 'https://docs.logto.io/quick-starts/react',
},
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const metadata: Readonly<GuideMetadata> = Object.freeze({
},
fullGuide: {
title: 'Full vanilla JS SDK tutorial',
url: 'https://docs.logto.io/sdk/vanilla-js',
url: 'https://docs.logto.io/quick-starts/vanilla-js',
},
});

Expand Down
2 changes: 1 addition & 1 deletion packages/console/src/assets/docs/guides/spa-vue/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const metadata: Readonly<GuideMetadata> = Object.freeze({
isFeatured: true,
fullGuide: {
title: 'Full Vue SDK tutorial',
url: 'https://docs.logto.io/sdk/vue',
url: 'https://docs.logto.io/quick-starts/vue',
},
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ var claims = User.Claims;
var userId = claims.FirstOrDefault(c => c.Type == LogtoParameters.Claims.Subject)?.Value;
```

See the [full tutorial](https://docs.logto.io/sdk/dotnet-core/blazor-server/) for more details.
See the [full tutorial](https://docs.logto.io/quick-starts/dotnet-core/blazor-server/) for more details.

</Step>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const metadata: Readonly<GuideMetadata> = Object.freeze({
},
fullGuide: {
title: 'Full .NET Core (Blazor Server) integration tutorial',
url: 'https://docs.logto.io/sdk/dotnet-core/blazor-server',
url: 'https://docs.logto.io/quick-starts/dotnet-core/blazor-server',
},
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ Now you can run the web application and try to sign in and sign out with Logto:

To get the user profile, you can use the `User?.Profile` property; to fetch the access token, you can use the `User?.AccessToken` property or add it to your HTTP client using `.AddAccessToken()`.

See the [full tutorial](https://docs.logto.io/sdk/dotnet-core/blazor-wasm/) for more details.
See the [full tutorial](https://docs.logto.io/quick-starts/dotnet-core/blazor-wasm/) for more details.

</Step>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const metadata: Readonly<GuideMetadata> = Object.freeze({
},
fullGuide: {
title: 'Full .NET Core (Blazor WASM) integration tutorial',
url: 'https://docs.logto.io/sdk/dotnet-core/blazor-wasm',
url: 'https://docs.logto.io/quick-starts/dotnet-core/blazor-wasm',
},
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ var claims = User.Claims;
var userId = claims.FirstOrDefault(c => c.Type == LogtoParameters.Claims.Subject)?.Value;
```

See the [full tutorial](https://docs.logto.io/sdk/dotnet-core/mvc/) for more details.
See the [full tutorial](https://docs.logto.io/quick-starts/dotnet-core/mvc/) for more details.

</Step>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const metadata: Readonly<GuideMetadata> = Object.freeze({
},
fullGuide: {
title: 'Full .NET Core (MVC) integration tutorial',
url: 'https://docs.logto.io/sdk/dotnet-core/mvc',
url: 'https://docs.logto.io/quick-starts/dotnet-core/mvc',
},
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ var claims = User.Claims;
var userId = claims.FirstOrDefault(c => c.Type == LogtoParameters.Claims.Subject)?.Value;
```

See the [full tutorial](https://docs.logto.io/sdk/dotnet-core/razor/) for more details.
See the [full tutorial](https://docs.logto.io/quick-starts/dotnet-core/razor/) for more details.

</Step>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const metadata: Readonly<GuideMetadata> = Object.freeze({
},
fullGuide: {
title: 'Full Express SDK tutorial',
url: 'https://docs.logto.io/sdk/express',
url: 'https://docs.logto.io/quick-starts/express',
},
});

Expand Down
2 changes: 1 addition & 1 deletion packages/console/src/assets/docs/guides/web-go/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const metadata: Readonly<GuideMetadata> = Object.freeze({
},
fullGuide: {
title: 'Full Go SDK tutorial',
url: 'https://docs.logto.io/sdk/go',
url: 'https://docs.logto.io/quick-starts/go',
},
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const metadata: Readonly<GuideMetadata> = Object.freeze({
},
fullGuide: {
title: 'Full Next.js App Router SDK tutorial',
url: 'https://docs.logto.io/sdk/next-app-router',
url: 'https://docs.logto.io/quick-starts/next-app-router',
},
});

Expand Down
2 changes: 1 addition & 1 deletion packages/console/src/assets/docs/guides/web-next/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const metadata: Readonly<GuideMetadata> = Object.freeze({
isFeatured: true,
fullGuide: {
title: 'Full Next.js SDK tutorial',
url: 'https://docs.logto.io/sdk/next',
url: 'https://docs.logto.io/quick-starts/next',
},
});

Expand Down
2 changes: 1 addition & 1 deletion packages/console/src/assets/docs/guides/web-nuxt/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const metadata: Readonly<GuideMetadata> = Object.freeze({
},
fullGuide: {
title: 'Full Nuxt guide',
url: 'https://docs.logto.io/sdk/nuxt',
url: 'https://docs.logto.io/quick-starts/nuxt',
},
});

Expand Down
2 changes: 1 addition & 1 deletion packages/console/src/assets/docs/guides/web-php/README.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ Note that a field (claim) with `null` value doesn't mean the field is set. The r

For example, if we didn't request the `email` scope when signing in, and the `email` field will be `null`. However, if we requested the `email` scope, the `email` field will be the user's email address if available.

To learn more about scopes and claims, see [Get user information](https://docs.logto.io/sdk/php/#get-user-information).
To learn more about scopes and claims, see [Get user information](https://docs.logto.io/quick-starts/php/#get-user-information).

</Step>

Expand Down
2 changes: 1 addition & 1 deletion packages/console/src/assets/docs/guides/web-php/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const metadata: Readonly<GuideMetadata> = Object.freeze({
},
fullGuide: {
title: 'Full PHP SDK tutorial',
url: 'https://docs.logto.io/sdk/php',
url: 'https://docs.logto.io/quick-starts/php',
},
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ Adding `exclude_unset=True` will exclude unset fields from the JSON output, whic

For example, if we didn't request the `email` scope when signing in, and the `email` field will be excluded from the JSON output. However, if we requested the `email` scope, but the user doesn't have an email address, the `email` field will be included in the JSON output with a `null` value.

To learn more about scopes and claims, see [Get user information](https://docs.logto.io/sdk/python/#get-user-information).
To learn more about scopes and claims, see [Get user information](https://docs.logto.io/quick-starts/python/#get-user-information).

</Step>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const metadata: Readonly<GuideMetadata> = Object.freeze({
},
fullGuide: {
title: 'Full Python SDK tutorial',
url: 'https://docs.logto.io/sdk/python',
url: 'https://docs.logto.io/quick-starts/python',
},
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const metadata: Readonly<GuideMetadata> = Object.freeze({
},
fullGuide: {
title: 'Full SvelteKit guide',
url: 'https://docs.logto.io/sdk/sveltekit',
url: 'https://docs.logto.io/quick-starts/sveltekit',
},
});

Expand Down

0 comments on commit a6582b2

Please sign in to comment.