-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
116 lines (115 loc) · 2.62 KB
/
config.js
File metadata and controls
116 lines (115 loc) · 2.62 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/*
* Copyright (C) 2024 Elijah Olmos
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, version 3.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
// Bot configuration settings
export default {
get production() {
return {
// Which users/roles get access to all commands
command_perms: {
categories: {
moderator: [
{
// Moderator
id: '904095889558212660',
type: 'ROLE',
permission: true,
},
],
admin: [
{
// Moderator
id: '904095889558212660',
type: 'ROLE',
permission: true,
},
{
// staff
id: '858144532318519326',
type: 'ROLE',
permission: true,
},
],
},
},
main_guild_id: '270408632863031298',
channels: {
private_log: '928415523652374621',
public_log: '928032754824802344',
connection_log: '932058303779983470',
cron_log: '1029803136367476807',
log_401: '1036438412011507773',
log_health: '1077445943865131018',
},
events: {},
emoji: {},
// bot.checkMod() returns true if user has any of these roles
mod_roles: [
'784875278593818694', //Admin
'752363863441145866', //Mod
],
};
},
get development() {
return {
// Which users/roles get access to all commands
command_perms: {
categories: {
moderator: [
{
// Moderator
id: '904095889558212660',
type: 'ROLE',
permission: true,
},
],
admin: [
{
// Moderator
id: '904095889558212660',
type: 'ROLE',
permission: true,
},
{
// staff
id: '858144532318519326',
type: 'ROLE',
permission: true,
},
],
},
},
main_guild_id: '270408632863031298',
channels: {
private_log: '928415523652374621',
public_log: '270745162089496586',
connection_log: '932058303779983470',
cron_log: '1029803136367476807',
log_401: '1036438412011507773',
log_health: '1077445943865131018',
},
events: {},
emoji: {},
mod_roles: [
'858144532318519326', //Staff
],
};
},
get staging() {
return {
...this.development,
};
},
};