summary refs log tree commit diff
path: root/src/util/config/types/GeneralConfiguration.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/config/types/GeneralConfiguration.ts')
-rw-r--r--src/util/config/types/GeneralConfiguration.ts12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/util/config/types/GeneralConfiguration.ts b/src/util/config/types/GeneralConfiguration.ts
new file mode 100644
index 00000000..55848b44
--- /dev/null
+++ b/src/util/config/types/GeneralConfiguration.ts
@@ -0,0 +1,12 @@
+import { Snowflake } from "../../util";
+
+export class GeneralConfiguration {
+	instanceName: string = "Fosscord Instance";
+	instanceDescription: string | null = "This is a Fosscord instance made in the pre-release days";
+	frontPage: string | null = null;
+	tosPage: string | null = null;
+	correspondenceEmail: string | null = "noreply@localhost.local";
+	correspondenceUserID: string | null = null;
+	image: string | null = null;
+	instanceId: string = Snowflake.generate();
+}
\ No newline at end of file