More work on converting to the Lysand protocol

This commit is contained in:
Jesse Wierzbinski 2023-11-03 17:34:31 -10:00
parent 02b56f8fde
commit 77a675afe6
No known key found for this signature in database
GPG key ID: F9A1E418934E40B0
25 changed files with 1181 additions and 807 deletions

View file

@ -16,6 +16,13 @@ export interface ConfigType {
banned_ips: string[];
};
instance: {
name: string;
description: string;
banner: string;
logo: string;
};
smtp: {
server: string;
port: number;
@ -133,6 +140,12 @@ export const configDefaults: ConfigType = {
password: "postgres",
database: "lysand",
},
instance: {
banner: "",
description: "",
logo: "",
name: "",
},
smtp: {
password: "",
port: 465,