forked from TFAGaming/DiscordJS-V14-ModMail-Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
17 lines (15 loc) · 917 Bytes
/
config.js
File metadata and controls
17 lines (15 loc) · 917 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module.exports = {
Client: {
TOKEN: "", // Your bot's TOKEN. Please use this only in VISUAL STUDIO CODE, not in REPLIT. [OPTIONAL]
ID: "" // Your bot's ID. [REQUIRED]
},
Handler: {
GUILD_ID: "", // Your guild/server ID where you want the mails will be created. [REQUIRED]
CATEGORY_ID: "" // Custom category ID where you want the mails will be created on. You can use /setup slash command to create a category without using this variable.
},
Modmail: {
INTERACTION_COMMAND_PERMISSIONS: ['Administrator'], // The permissions for the slash commands that admins/server managers can access only. [REQUIRED]
MAIL_MANAGER_ROLES: [''], // The roles for the category where moderators can manage mails.
MENTION_MANAGER_ROLES_WHEN_NEW_MAIL_CREATED: false // If this is "true": When a mail created, all the MANAGER_ROLES will be pinged. Else, if "false": It doesn't ping the roles.
}
};