There was an error while loading. Please reload this page.
1 parent 071dfc6 commit 6258a27Copy full SHA for 6258a27
1 file changed
src/config.ts
@@ -2,8 +2,6 @@ export const DEV_MODE = process.env.NODE_ENV !== 'production';
2
3
export const TEST_GUILD_ID = process.env.TEST_GUILD_ID ?? '918887934822858802';
4
5
-export const DISCORD_TOKEN = process.env.DISCORD_TOKEN;
6
-
7
export const SVELTE_ORANGE = 0xff3e00;
8
9
export const GITHUB_TOKEN = process.env.GITHUB_TOKEN;
@@ -50,13 +48,14 @@ export const TAG_CREATE_PERMITTED_IDS = DEV_MODE
50
48
? TEST_ADMIN_ROLES
51
49
: PRIVILEGED_ROLES;
52
53
-export const BOT_DEVS = [
+const BOT_DEVS = [
54
// cirilla
55
'339731096793251854',
56
57
// GHOST
58
'282839711834177537',
59
];
+
60
/**
61
* List of roles/user IDs other than the creator allowed to modify threads.
62
*/
0 commit comments