summary refs log tree commit diff
path: root/src/util/config/types/GeneralConfiguration.ts
blob: 462f93e2a44c07d139c713bbcfbc5f99d29f40af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { Snowflake } from "@fosscord/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 = null;
	correspondenceUserID: string | null = null;
	image: string | null = null;
	instanceId: string = Snowflake.generate();
}