alpha
Login
or
Join now
flo-bit.dev
/
youtube-party-dj
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
[READ-ONLY] Mirror of https://github.com/flo-bit/youtube-party-dj. democratic youtube player, everyone can vote and add songs, uni project, made with uix
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
part of temporary popup
author
thaleius
date
2 years ago
(Jul 10, 2024, 7:56 PM UTC)
commit
23c66609
23c6660929183f3a71dadff73738d42d346246be
parent
2975d49a
2975d49a13e2172a43c195008f7195ea5a24df64
+1
-1
1 changed file
Expand all
Collapse all
Unified
Split
common
components
integrations
discord
Login.tsx
+1
-1
common/components/integrations/discord/Login.tsx
View file
Reviewed
···
4
4
return (
5
5
<div>
6
6
<h1>Setup Discord Bot</h1>
7
7
-
<a href={`https://discord.com/oauth2/authorize?client_id=${clientId}&response_type=code&redirect_uri=${encodeURIComponent(new URL(window.location.href).origin)}%2Fintegration%2Fdiscord%2Fauth&scope=identify+guilds`}>Login</a>
7
7
+
<a href={`https://discord.com/oauth2/authorize?client_id=${clientId}&response_type=code&redirect_uri=${encodeURIComponent(new URL(window.location.href).origin)}%2Fintegration%2Fdiscord%2Fauth&scope=identify+guilds`} target="_blank" onclick={globalThis.close}>Login</a>
8
8
</div>
9
9
)
10
10
}