aboutsummaryrefslogtreecommitdiff
path: root/communities
diff options
context:
space:
mode:
Diffstat (limited to 'communities')
-rw-r--r--communities/red-right-hand/174bg.net/src/app/secure/discord-data/page.js24
1 files changed, 24 insertions, 0 deletions
diff --git a/communities/red-right-hand/174bg.net/src/app/secure/discord-data/page.js b/communities/red-right-hand/174bg.net/src/app/secure/discord-data/page.js
new file mode 100644
index 0000000..b906569
--- /dev/null
+++ b/communities/red-right-hand/174bg.net/src/app/secure/discord-data/page.js
@@ -0,0 +1,24 @@
+import { auth } from "@/auth";
+import { headers } from "next/headers";
+
+export default async function DiscordData() {
+ const session = await auth.api.getSession({ headers: await headers() });
+ const accounts = await auth.api.listUserAccounts({
+ headers: await headers(),
+ });
+ const discordAccount = accounts?.find((a) => a.provider === "discord");
+
+ return (
+ <main>
+ <h1>Discord Data</h1>
+ <p>The following data is stored about your Discord account:</p>
+ <pre>
+ {JSON.stringify(
+ { user: session?.user, account: discordAccount },
+ null,
+ 2,
+ )}
+ </pre>
+ </main>
+ );
+}