forked from kaogeek/kaogeek-discord-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bot-config.example.toml
29 lines (23 loc) · 913 Bytes
/
bot-config.example.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# To see the latest configuration values used in production, see this file:
# https://github.com/creatorsgarten/kaogeek-discord-bot/blob/config/bot-config.toml
[nameChecker]
patterns = [
{ regexp = "examplebadname" },
]
reportChannelId = "1108478073998938163"
[nominations]
enabledRoles = [
# Contributor
{ roleId = "1108437362473697370", nominationsChannelId = "1108439224413343784" },
]
[preventEmojiSpam]
# If true, the bot will delete messages that only contains emojis.
enabled = false
# Channel IDs where the bot will delete messages that only contains emojis
# even if the `enabled` option is set to false.
enabledChannels = []
# Channel IDs where the bot will not delete messages that only contains emojis.
# This overrides the `enabled` and `enabledChannels` options.
disabledChannels = []
# Role IDs who bypass the emoji spam prevention.
bypassRoles = []