summaryrefslogtreecommitdiff
path: root/src/discord/commands.ts
diff options
context:
space:
mode:
authorFuwn <[email protected]>2025-09-24 02:33:56 -0700
committerFuwn <[email protected]>2025-09-24 02:33:56 -0700
commit401d1220e1a5c2f8c37f2147cc392e0cd783b76f (patch)
tree7082dbb2ac19b8337338c90e78541a44b82fbb37 /src/discord/commands.ts
parentfeat(server): Add new colour roles (diff)
downloadumabotdiscord-401d1220e1a5c2f8c37f2147cc392e0cd783b76f.tar.xz
umabotdiscord-401d1220e1a5c2f8c37f2147cc392e0cd783b76f.zip
feat: Appeal slash command
Diffstat (limited to 'src/discord/commands.ts')
-rw-r--r--src/discord/commands.ts13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/discord/commands.ts b/src/discord/commands.ts
index 652a20a..5f25097 100644
--- a/src/discord/commands.ts
+++ b/src/discord/commands.ts
@@ -71,6 +71,19 @@ export const COMPLAIN_COMMAND: DiscordCommand = {
],
};
+export const APPEAL_COMMAND: DiscordCommand = {
+ name: "appeal",
+ description: "Submit an appeal to the moderators",
+ options: [
+ {
+ type: 3,
+ name: "message",
+ description: "Your appeal message",
+ required: true,
+ },
+ ],
+};
+
export const COLOURS_COMMAND: DiscordCommand = {
name: "colours",
description: "Show the distribution of colour roles in the server",