mirror of
https://github.com/versia-pub/server.git
synced 2026-03-13 05:49:16 +01:00
More work on converting to the Lysand protocol
This commit is contained in:
parent
02b56f8fde
commit
77a675afe6
25 changed files with 1181 additions and 807 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue