Add discord template support

This commit is contained in:
uurgothat
2021-10-17 23:20:46 +03:00
parent fa307ffeae
commit 652edbd895
2 changed files with 20 additions and 1 deletions
+6
View File
@@ -160,6 +160,9 @@ export interface ConfigValue {
kafka: {
brokers: KafkaBroker[] | null;
};
templates: {
allowDiscordTemplates: Boolean
}
}
export const DefaultConfigOptions: ConfigValue = {
@@ -321,4 +324,7 @@ export const DefaultConfigOptions: ConfigValue = {
kafka: {
brokers: null,
},
templates: {
allowDiscordTemplates: true
}
};