1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-06 10:52:31 +01:00

Add image field

This commit is contained in:
uurgothat 2021-11-17 22:50:25 +03:00
parent bdc447e448
commit 312e459337

View File

@ -52,6 +52,7 @@ export interface ConfigValue {
instanceName: string; instanceName: string;
instanceDescription: string | null; instanceDescription: string | null;
frontPage: string | null; frontPage: string | null;
image: string | null;
instanceId: string; instanceId: string;
}; };
limits: { limits: {
@ -185,8 +186,9 @@ export const DefaultConfigOptions: ConfigValue = {
general: { general: {
instanceName: "Fosscord Instance", instanceName: "Fosscord Instance",
instanceDescription: "This is a Fosscord instance made in pre-relase days", instanceDescription: "This is a Fosscord instance made in pre-relase days",
frontPage: null,
image: null,
instanceId: Snowflake.generate(), instanceId: Snowflake.generate(),
frontPage: null
}, },
limits: { limits: {
user: { user: {