-
Notifications
You must be signed in to change notification settings - Fork 16
/
config.example.ts
75 lines (66 loc) · 1.47 KB
/
config.example.ts
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
export const BOT = {
TOKEN: '', // Bot token here
CLIENT_ID: '', // Client ID here
NAME: 'Sage' // Bot Name
};
export const MONGO = '';
export const DB = {
CONNECTION: '', // Mongo connection string here
USERS: 'users',
PVQ: 'pvQuestions',
QTAGS: 'questionTags',
ASSIGNABLE: 'assignable',
COURSES: 'courses',
REMINDERS: 'reminders',
CLIENT_DATA: 'clientData',
POLLS: 'polls'
};
export const GUILDS = { // Guild IDs for each guild
MAIN: '',
GATEWAY: '',
GATEWAY_INVITE: ''
};
export const ROLES = { // Role IDS for each role
ADMIN: '',
STUDENT_ADMIN: '',
STAFF: '',
VERIFIED: '',
MUTED: '',
LEVEL_ONE: ''
};
export const EMAIL = {
SENDER: '', // The email address all emails should be sent from
REPLY_TO: '', // The replyto address for all emails
REPORT_ADDRESSES: [ // A list of all the email address to get the weekly report
''
]
};
export const CHANNELS = { // Channel IDs
ERROR_LOG: '',
SERVER_LOG: '',
MEMBER_LOG: '',
MOD_LOG: '',
FEEDBACK: '',
SAGE: '',
ANNOUNCEMENTS: '',
ARCHIVE: '',
ROLE_SELECT: ''
};
export const ROLE_DROPDOWNS = {
COURSE_ROLES: '',
ASSIGN_ROLES: ''
};
export const LEVEL_TIER_ROLES = [
'',
'',
'',
'',
''
];
export const FIRST_LEVEL = 10;
export const GITHUB_TOKEN = '';
export const GITHUB_PROJECT = '';
export const PREFIX = 's;';
export const MAINTAINERS = ''; // The current maintainers of this bot
export const SEMESTER_ID = ''; // The current semester ID. i.e. s21
export const BLACKLIST = [];