diff options
Diffstat (limited to 'priv/static/discord_activity.js')
-rw-r--r-- | priv/static/discord_activity.js | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/priv/static/discord_activity.js b/priv/static/discord_activity.js deleted file mode 100644 index 344c30d..0000000 --- a/priv/static/discord_activity.js +++ /dev/null @@ -1,20 +0,0 @@ -import { DiscordSDK } from "/static/discord-embedded-app-sdk/Discord.js"; - -const discordSdk = new DiscordSDK(DISCORD_CLIENT_ID); - -discordSdk - .ready() - .then(() => { - console.log("Mediasync: Discord SDK ready."); - return discordSdk.commands.authorize({ - client_id: DISCORD_CLIENT_ID, - response_type: "code", - state: "", - prompt: "none", - scope: ["identify"], - }); - }) - .then((result) => { - const { code } = result; - console.log(code); - }); |