diff options
| author | Fuwn <[email protected]> | 2025-10-08 22:43:38 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-10-08 22:43:38 -0700 |
| commit | 684dbde1d1ae2708d2dae623311326debf83c143 (patch) | |
| tree | 7f8450db4640b8d37c66012dd19c9ff4bc25972f /packages/interactions/discord/commands | |
| parent | feat(gateway:listeners): Disable mediaModeration module (diff) | |
| download | umabotdiscord-684dbde1d1ae2708d2dae623311326debf83c143.tar.xz umabotdiscord-684dbde1d1ae2708d2dae623311326debf83c143.zip | |
feat(interactions): Remove age-verify and nsfw-apply slash commands
Diffstat (limited to 'packages/interactions/discord/commands')
| -rw-r--r-- | packages/interactions/discord/commands/index.ts | 73 |
1 files changed, 0 insertions, 73 deletions
diff --git a/packages/interactions/discord/commands/index.ts b/packages/interactions/discord/commands/index.ts index c22d3aa..46665a4 100644 --- a/packages/interactions/discord/commands/index.ts +++ b/packages/interactions/discord/commands/index.ts @@ -96,23 +96,6 @@ export const APPEAL_COMMAND: DiscordCommand = { ], }; -export const NSFW_APPLY_COMMAND: DiscordCommand = { - name: "nsfw-apply", - description: "Submit an NSFW access application to the moderators", - contexts: [ - DISCORD_INTERACTION_CONTEXTS.GUILD, - DISCORD_INTERACTION_CONTEXTS.BOT_DM, - ], - options: [ - { - type: DISCORD_APPLICATION_COMMAND_OPTION_TYPES.STRING, - name: "message", - description: "Your NSFW access application message", - required: true, - }, - ], -}; - export const COLOURS_COMMAND: DiscordCommand = { name: "colours", description: "Show the distribution of colour roles in the server", @@ -151,59 +134,3 @@ export const ROLEPLAY_VERIFY_COMMAND: DiscordCommand = { }, ], }; - -export const AGE_VERIFY_COMMAND: DiscordCommand = { - name: "age-verify", - description: "Manage the verified age role (Staff only)", - options: [ - { - type: DISCORD_APPLICATION_COMMAND_OPTION_TYPES.STRING, - name: "action", - description: "Action to perform on the role", - required: true, - choices: [ - { - name: "Add Role", - value: "add", - }, - { - name: "Remove Role", - value: "remove", - }, - { - name: "Toggle Role", - value: "toggle", - }, - ], - }, - { - type: DISCORD_APPLICATION_COMMAND_OPTION_TYPES.USER, - name: "user", - description: "User to perform the action on", - required: true, - }, - { - type: DISCORD_APPLICATION_COMMAND_OPTION_TYPES.STRING, - name: "access", - description: "Type of access to grant", - required: true, - choices: [ - { - name: "Art & Media", - value: "art_media", - }, - { - name: "Roleplay NSFW", - value: "roleplay_nsfw", - }, - ], - }, - { - type: DISCORD_APPLICATION_COMMAND_OPTION_TYPES.STRING, - name: "reason", - description: - "Reason for verification (how and why you verified the user)", - required: true, - }, - ], -}; |