Remove discord login config

This commit is contained in:
Madeline
2022-12-17 19:43:18 +11:00
parent 061a03eced
commit 1e2e82d975

View File

@@ -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,
}
}
};