summary refs log tree commit diff
path: root/src/util/config/types/TemplateConfiguration.ts
blob: aade2934fd490041a2a91ccf7ba11e4771330f4f (plain) (blame)
1
2
3
4
5
6
export class TemplateConfiguration {
	enabled: boolean = true;
	allowTemplateCreation: boolean = true;
	allowDiscordTemplates: boolean = true;
	allowRaws: boolean = true;
}