-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.example.py
More file actions
38 lines (29 loc) · 858 Bytes
/
config.example.py
File metadata and controls
38 lines (29 loc) · 858 Bytes
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
30
31
32
33
34
35
36
37
38
# type: ignore
# Discord.py
token = 'token'
# Mongo Credentials
mongoURI = 'MongoDB URI'
# Channel IDs
modLog: int = mod_log_channel_id
adminChannel: int = admin_channel_id
forumChannel: int = modmail_forum_id
# Category ID
category: int = modmail_category_id
# Guild IDs
guild: int = modmail_guild_id
appealGuild: int = ban_appeal_guild_id
# Role IDs
leadModRole: int = lead_moderator_role_id
modRole: int = moderator_role_id
trialModRole: int = trial_moderator_role_id
# Emoji IDs
addTick = '<:addTickL:951241243604713492>'
removeTick = '<:removeTickL:951249921862926367>'
# Tag IDs
userThreadTag: int = user_created_tag_id
modThreadTag: int = moderator_created_tag_id
banAppealTag: int = user_ban_appeal_tag_id
messageReportTag: int = message_reported_tag_id
# URLs
logUrl = 'https://example.com/logs/'
appealInvite = 'https://discord.gg/invite'