-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
179 lines (179 loc) · 5.44 KB
/
config.js
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
// Bot configuration settings
export default {
get production() {
return {
// Which users/roles get access to all commands
command_perms: {
categories: {
moderator: [
{ // Admin
id: '917806303194263634',
type: 'ROLE',
permission: true,
},
{ // Moderator
id: '917806303194263633',
type: 'ROLE',
permission: true,
},
{
// Ollog10
id: '139120967208271872',
type: 'USER',
permission: true,
},
],
admin: [
{ // Admin
id: '917806303194263634',
type: 'ROLE',
permission: true,
},
{ // Moderator
id: '917806303194263633',
type: 'ROLE',
permission: true,
},
{
// Ollog10
id: '139120967208271872',
type: 'USER',
permission: true,
},
{ // Pog staff
id: '917806303173283879',
type: 'ROLE',
permission: true,
},
],
},
names: {
awardnft: [
{
// *drops
id: '917806303156523070',
type: 'ROLE',
permission: true,
},
],
poap: [
{
// *drops
id: '917806303156523070',
type: 'ROLE',
permission: true,
},
],
},
},
pog_guild_id: '917806303156523069',
channels: {
private_log: '933539353538486422',
public_log: '933539277298610206',
mod_log: '917806304515473425',
},
events: {
goodActs: {
target_channel: '840679701118189579',
},
kindWords: {
target_channel: '830163592803254352',
},
addAlphaTesterRole: {
alpha_role: '751919744528941126',
},
},
emoji: {
pog_logo: '<:PogLogo:846152082226282506>',
deafened: '<:deafened:948609937355997195>',
},
// PogBot.checkMod() returns true if user has any of these roles
mod_roles: [
'917806303194263634', //Admin
'917806303194263633', //Mod
],
// Can be self-assigned using a command
self_roles: [
'957734682500415538', //event announcements
'957734692730327080', //altruraiders
],
muted_role: '917806303156523073',
};
},
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,
},
{
// Pog staff
id: '858144532318519326',
type: 'ROLE',
permission: true,
},
],
},
names: {
awardnft: [
{
// *drops
id: '914642168939962378',
type: 'ROLE',
permission: true,
},
],
},
},
pog_guild_id: '857839180608307210',
channels: {
private_log: '858141871788392448',
public_log: '858141914841481246',
reward_log: '904081593029759006',
mod_log: '892268882285457439', //private mod log
submission_log: '903055896173764659', //private submission log
ama_vc: '869993145499287604',
polls: '877229054456107069',
},
events: {
goodActs: {
target_channel: '877229121086840912',
},
kindWords: {
target_channel: '877229143786422323',
},
addAlphaTesterRole: {
alpha_role: '879817566799925298',
},
},
emoji: {
pog_logo: '<:PogLogo:859111140696391680>',
deafened: '<:deafened:945042605438279723>',
},
mod_roles: [
'858144532318519326', //Pog Staff
],
self_roles: ['873234204706631720', '865629785015320608'],
muted_role: '894741083186139156',
};
},
get staging() {
return {
...this.development,
};
},
};