diff options
Diffstat (limited to 'packages/interactions/discord/commands')
| -rw-r--r-- | packages/interactions/discord/commands/index.ts | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/packages/interactions/discord/commands/index.ts b/packages/interactions/discord/commands/index.ts index a69e786..0a13e33 100644 --- a/packages/interactions/discord/commands/index.ts +++ b/packages/interactions/discord/commands/index.ts @@ -86,6 +86,20 @@ export const APPEAL_COMMAND: DiscordCommand = { ], }; +export const NSFW_APPLY_COMMAND: DiscordCommand = { + name: "nsfw-apply", + description: "Submit an NSFW access application to the moderators", + contexts: [0], + options: [ + { + type: 3, + 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", |