Skip to content

Commit

Permalink
Merge branch 'main' of github.com:HenrySpartGlobal/InHouseQueue-site …
Browse files Browse the repository at this point in the history
…into main
  • Loading branch information
HenrySpartGlobal committed Nov 24, 2024
2 parents 200e738 + d3d017e commit f19bdeb
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default function HomePage() {

<Button
variant="primary"
href="https://discord.com/api/oauth2/authorize?client_id=1001168331996409856&permissions=1101927804016&scope=bot"
href="https://discord.com/api/oauth2/authorize?client_id=1001168331996409856&permissions=2433051696&scope=bot"
target="_blank"
>
Add to Discord
Expand Down
37 changes: 37 additions & 0 deletions src/data/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -865,6 +865,43 @@ const commands = [
"/queue set_unique_leaderboard #queue Custom",
]
},
{
"name": "queue suspend",
"type": "Admin",
"description": "Suspend a user from queueing temporarily.",
"usage": [
"/queue suspend [user] [duration] [reason]"
],
"examples": [
"/queue suspend @User123 1d Spamming inappropriate content",
"/queue suspend @User456 2h Violation of rules",
"/queue suspend @User789"
]
},
{
"name": "queue unsuspend",
"type": "Admin",
"description": "Remove a user's suspension from queueing.",
"usage": [
"/queue unsuspend [user] [reason]"
],
"examples": [
"/queue unsuspend @User123 Apology accepted",
"/queue unsuspend @User456",
"/queue unsuspend @User789 Mistaken identity"
]
},
{
"name": "queue suspensions",
"type": "Admin",
"description": "Display the list of currently suspended users.",
"usage": [
"/queue suspensions"
],
"examples": [
"/queue suspensions"
]
},

// ~ Set-up
{
Expand Down
2 changes: 1 addition & 1 deletion src/partials/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default function Footer(props: { withBorder?: boolean }) {
</Link>
</li>
<li>
<a href="https://discord.com/api/oauth2/authorize?client_id=1001168331996409856&permissions=1101927804016&scope=bot">
<a href="https://discord.com/api/oauth2/authorize?client_id=1001168331996409856&permissions=2433051696&scope=bot">
Invite
</a>
</li>
Expand Down
2 changes: 1 addition & 1 deletion src/partials/Home/CallToAction.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default function CallToAction() {
{/* invite button */}
<Button
variant="secondary"
href="https://discord.com/api/oauth2/authorize?client_id=1001168331996409856&permissions=1101927804016&scope=bot"
href="https://discord.com/api/oauth2/authorize?client_id=1001168331996409856&permissions=2433051696&scope=bot"
target="_blank"
>
Add to Discord
Expand Down
2 changes: 1 addition & 1 deletion src/partials/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const links = [
},
{
name: "Invite",
href: "https://discord.com/api/oauth2/authorize?client_id=1001168331996409856&permissions=1101927804016&scope=bot"
href: "https://discord.com/api/oauth2/authorize?client_id=1001168331996409856&permissions=2433051696&scope=bot"
},
{
name: "Support",
Expand Down

0 comments on commit f19bdeb

Please sign in to comment.