summary refs log tree commit diff
path: root/src/util/config/types/GeneralConfiguration.ts
blob: 55848b44a6c86162abb4497e111b77b5721c6d8c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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();
}