-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.py.dist
41 lines (32 loc) · 1.11 KB
/
config.py.dist
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
39
40
41
# Enable or disable debug logging
DEBUG_MODE = False
# Token with the read and admin scopes you need
token = ''
# Base URL of your instance, without a trailing slash
base_url = 'https://im-in.space'
# Discord webhook URL for trends for review
whook_trends_rev = 'https://discord.com/api/webhooks/[channel id]/' + \
'[token]'
# Discord webhook URL for (auto-)approved trends
whook_trends_ok = 'https://discord.com/api/webhooks/[channel id]/' + \
'[token]'
# Discord webhook URL for registrations
whook_reg = 'https://discord.com/api/webhooks/[channel id]/' + \
'[token]'
# API key from verifier.meetchopra.com to check if email is valid
# and not from a disposable provider. Set to `False` to disable
verifier_key = False
# Discord user id to ping if a new user triggers one of the checks.
# Set to `False` to disable
discord_uid = False
# Enable auto-approving trends (Mastodon >=4.1.3)
trends_auto = False
# List of strings to prevent auto-approval (ie. some begposts to vet)
trends_hold = [
'donate',
'support',
'paypal',
'kofi',
'ko-fi',
'sponsor'
]