Files
SCNewsBot/example.config.toml

23 lines
608 B
TOML
Raw Normal View History

2023-05-07 14:00:46 -06:00
# This is important. Make sure to set this to "false" when running the bot.
debug = true
[bot]
prefix = "&"
extensions = [
2023-05-07 14:42:54 -06:00
"extensions.announcements",
"extensions.templates"
2023-05-07 14:00:46 -06:00
]
[permissions]
# This works in a whitelist mode. The invoker of the command must be in an allowed guild and
# must have an allowed role. If neither of those are true, allowed_users is checked last.
allowed_guilds = []
allowed_roles = []
allowed_users = []
[permissions.debug]
# This works in addition to the regular permissions, but only if debug mode is enabled.
allowed_guilds = []
allowed_roles = []
2023-05-07 14:42:54 -06:00
allowed_users = []