1 files changed, 14 insertions, 0 deletions
diff --git a/util/src/entities/Config.ts b/util/src/entities/Config.ts
index cac5d4da..492baa4c 100644
--- a/util/src/entities/Config.ts
+++ b/util/src/entities/Config.ts
@@ -49,6 +49,13 @@ export interface ConfigValue {
endpointPrivate: string | null;
};
general: {
+ instanceName: string;
+ instanceDescription: string | null;
+ frontPage: string | null;
+ tosPage: string | null;
+ correspondenceEmail: string | null;
+ correspondenceUserID: string | null;
+ image: string | null;
instanceId: string;
};
limits: {
@@ -180,6 +187,13 @@ export const DefaultConfigOptions: ConfigValue = {
endpointPublic: null,
},
general: {
+ instanceName: "Fosscord Instance",
+ instanceDescription: "This is a Fosscord instance made in pre-relase days",
+ frontPage: null,
+ tosPage: null,
+ correspondenceEmail: "noreply@localhost.local",
+ correspondenceUserID: null,
+ image: null,
instanceId: Snowflake.generate(),
},
limits: {
|