diff options
Diffstat (limited to 'communities/red-right-hand/174bg.net/src/app/secure')
| -rw-r--r-- | communities/red-right-hand/174bg.net/src/app/secure/discord-data/page.js | 24 | ||||
| -rw-r--r-- | communities/red-right-hand/174bg.net/src/app/secure/page.js | 13 |
2 files changed, 0 insertions, 37 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 deleted file mode 100644 index b906569..0000000 --- a/communities/red-right-hand/174bg.net/src/app/secure/discord-data/page.js +++ /dev/null @@ -1,24 +0,0 @@ -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> - ); -} diff --git a/communities/red-right-hand/174bg.net/src/app/secure/page.js b/communities/red-right-hand/174bg.net/src/app/secure/page.js deleted file mode 100644 index 27312b7..0000000 --- a/communities/red-right-hand/174bg.net/src/app/secure/page.js +++ /dev/null @@ -1,13 +0,0 @@ -import { auth } from "@/auth"; -import { headers } from "next/headers"; - -export default async function SecurePage() { - const session = await auth.api.getSession({ headers: await headers() }); - - return ( - <main> - <h1>Secure Area</h1> - <p>Welcome, {session?.user?.name ?? session?.user?.email}!</p> - </main> - ); -} |
