diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-12-17 19:43:18 +1100 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-12-17 19:43:18 +1100 |
commit | 8af99034bcd70cd99192e9e1696c823b2162f8f0 (patch) | |
tree | 6a544eadd829feec5de4c3967b024d2a09c8fa6f | |
parent | Remove /policies/instance/stats (diff) | |
download | server-8af99034bcd70cd99192e9e1696c823b2162f8f0.tar.xz |
Remove discord login config
-rw-r--r-- | src/util/entities/Config.ts | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/util/entities/Config.ts b/src/util/entities/Config.ts index 9b25795d..ff42b412 100644 --- a/src/util/entities/Config.ts +++ b/src/util/entities/Config.ts @@ -211,11 +211,6 @@ export interface ConfigValue { }; external: { twitter: string | null; - discord: { - id: string | null; - secret: string | null; - redirect: string | null; - }; }; } @@ -428,10 +423,5 @@ export const DefaultConfigOptions: ConfigValue = { }, external: { twitter: null, - discord: { - id: null, - secret: null, - redirect: null, - } } }; |