Skip to content

Commit 61a0c90

Browse files
authored
[Social SDK] Move several pages into the How-to section (#7717)
This PR moves Debugging and Logging, Using with the Discord APIs, and Integrating Moderation into the How-to section, since they aren't really feature development guides, and fit better in How-to.
1 parent 74244a1 commit 61a0c90

File tree

7 files changed

+28
-25
lines changed

7 files changed

+28
-25
lines changed

docs/discord-social-sdk/development-guides.mdx

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ subpages:
1313
- development-guides/managing-lobbies.mdx
1414
- development-guides/linked-channels.mdx
1515
- development-guides/managing-voice-chat.mdx
16-
- development-guides/integrating-moderation.mdx
17-
- development-guides/debugging-logging.mdx
18-
- development-guides/using-with-discord-apis.mdx
1916
---
2017

2118
[Home](/docs/intro) > [Discord Social SDK](/docs/discord-social-sdk/overview) > Development Guides
@@ -73,14 +70,4 @@ If you are new to the Discord Social SDK, we recommend you start with the [Getti
7370
## Developer Best Practices
7471

7572
<Container>
76-
<Card title="Debugging & Logging" link="/docs/discord-social-sdk/development-guides/debugging-logging" icon="BugIcon">
77-
Use logging and debugging tools to troubleshoot issues.
78-
</Card>
79-
<Card title="Integrating Moderation" link="/docs/discord-social-sdk/development-guides/integrating-moderation"
80-
icon="ShieldIcon">
81-
Integrating and managing content moderation for your game when using the Discord Social SDK.
82-
</Card>
83-
<Card title="Using with Discord APIs" link="/docs/discord-social-sdk/development-guides/using-with-discord-apis" icon="ClydeIcon">
84-
Make requests to Discord's HTTP APIs from your game.
85-
</Card>
8673
</Container>

docs/discord-social-sdk/development-guides/managing-lobbies.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ There are two ways to manage lobbies:
6262

6363
You can use the Discord HTTP API to create, update, and delete lobbies and manage lobby membership.
6464

65-
See the [Lobby](/docs/resources/lobby) API resource for available endpoints and [Using with Discord APIs](/docs/discord-social-sdk/development-guides/using-with-discord-apis) for information on how to authenticate your requests.
65+
See the [Lobby](/docs/resources/lobby) API resource for available endpoints and [Use with Discord APIs](/docs/discord-social-sdk/how-to/use-with-discord-apis) for information on how to authenticate your requests.
6666

6767
:::info
6868
Clients will not be able to use [`Client::CreateOrJoinLobby`] or [`Client::LeaveLobby`] with lobbies created using the API.

docs/discord-social-sdk/development-guides/managing-voice-chat.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,11 +278,11 @@ This information is particularly useful for:
278278
## Next Steps
279279
280280
<Container>
281-
<Card title="Integrating Moderation" link="/docs/discord-social-sdk/development-guides/integrating-moderation"
281+
<Card title="Integrate Moderation" link="/docs/discord-social-sdk/how-to/integrate-moderation"
282282
icon="ShieldIcon">
283283
Integrating and managing content moderation for your game when using the Discord Social SDK.
284284
</Card>
285-
<Card title="Using with Discord APIs" link="/docs/discord-social-sdk/development-guides/using-with-discord-apis" icon="ClydeIcon">
285+
<Card title="Use with Discord APIs" link="/docs/discord-social-sdk/how-to/use-with-discord-apis" icon="ClydeIcon">
286286
Make requests to Discord's HTTP APIs from your game.
287287
</Card>
288288
<Card title="Managing Game Invites" link="/docs/discord-social-sdk/development-guides/managing-game-invites"

docs/discord-social-sdk/how-to.mdx

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
sidebar_label: How To
33
showTOC: false
44
subpages:
5+
- how-to/debug-log.mdx
6+
- how-to/use-with-discord-apis.mdx
7+
- how-to/integrate-moderation.mdx
58
- how-to/handle-special-characters-display-names.mdx
69
---
710

@@ -12,9 +15,21 @@ subpages:
1215
These how-to guides offer common solutions for integrating Discord Social SDK features into your game.
1316

1417
<Container>
15-
<Card title="Handle Special Characters in Display Names" link="/docs/discord-social-sdk/how-to/handle-special-characters-display-names" icon="LettersIcon">
16-
Handling Unicode characters in Discord Display Names for your game's chat and friend lists.
17-
</Card>
18+
<Card title="Debug & Log" link="/docs/discord-social-sdk/how-to/debug-log" icon="BugIcon">
19+
Use logging and debugging tools to troubleshoot issues.
20+
</Card>
21+
<Card title="Use with Discord APIs" link="/docs/discord-social-sdk/how-to/use-with-discord-apis"
22+
icon="ClydeIcon">
23+
Make requests to Discord's HTTP APIs from your game.
24+
</Card>
25+
<Card title="Integrate Moderation" link="/docs/discord-social-sdk/how-to/integrate-moderation"
26+
icon="ShieldIcon">
27+
Integrating and managing content moderation for your game when using the Discord Social SDK.
28+
</Card>
29+
<Card title="Handle Special Characters in Display Names"
30+
link="/docs/discord-social-sdk/how-to/handle-special-characters-display-names" icon="LettersIcon">
31+
Handling Unicode characters in Discord Display Names for your game's chat and friend lists.
32+
</Card>
1833
</Container>
1934

2035
---
@@ -23,4 +38,5 @@ These how-to guides offer common solutions for integrating Discord Social SDK fe
2338

2439
| Date | Changes |
2540
|---------------|-----------------------|
41+
| July 23, 2025 | migrated several docs |
2642
| June 17, 2025 | added How To category |

docs/discord-social-sdk/development-guides/debugging-logging.mdx renamed to docs/discord-social-sdk/how-to/debug-log.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
2-
sidebar_label: Debugging & Logging
2+
sidebar_label: Debug & Log
33
---
44
import PublicClient from '../partials/callouts/public-client.mdx';
55
import SupportCallout from '../partials/callouts/support.mdx';
66

7-
[Home](/docs/intro) > [Discord Social SDK](/docs/discord-social-sdk/overview) > [Development Guides](/docs/discord-social-sdk/development-guides) > {sidebar_label}
7+
[Home](/docs/intro) > [Discord Social SDK](/docs/discord-social-sdk/overview) > [How To](/docs/discord-social-sdk/how-to) > {sidebar_label}
88

99
# {sidebar_label}
1010

docs/discord-social-sdk/development-guides/integrating-moderation.mdx renamed to docs/discord-social-sdk/how-to/integrate-moderation.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
2-
sidebar_label: Integrating Moderation
2+
sidebar_label: Integrate Moderation
33
---
44
import PublicClient from '../partials/callouts/public-client.mdx';
55
import SupportCallout from '../partials/callouts/support.mdx';
66

7-
[Home](/docs/intro) > [Discord Social SDK](/docs/discord-social-sdk/overview) > [Development Guides](/docs/discord-social-sdk/development-guides) > {sidebar_label}
7+
[Home](/docs/intro) > [Discord Social SDK](/docs/discord-social-sdk/overview) > [How To](/docs/discord-social-sdk/how-to) > {sidebar_label}
88

99
# Moderation with the Discord Social SDK
1010

docs/discord-social-sdk/development-guides/using-with-discord-apis.mdx renamed to docs/discord-social-sdk/how-to/use-with-discord-apis.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
2-
sidebar_label: Using with Discord APIs
2+
sidebar_label: Use with Discord APIs
33
---
44
import PublicClient from '../partials/callouts/public-client.mdx';
55
import SupportCallout from '../partials/callouts/support.mdx';
66

7-
[Home](/docs/intro) > [Discord Social SDK](/docs/discord-social-sdk/overview) > [Development Guides](/docs/discord-social-sdk/development-guides) > {sidebar_label}
7+
[Home](/docs/intro) > [Discord Social SDK](/docs/discord-social-sdk/overview) > [How To](/docs/discord-social-sdk/how-to) > {sidebar_label}
88

99
# {sidebar_label}
1010

0 commit comments

Comments
 (0)