1 files changed, 2 insertions, 4 deletions
diff --git a/util/src/entities/Config.ts b/util/src/entities/Config.ts
index 1d2d496a..cac5d4da 100644
--- a/util/src/entities/Config.ts
+++ b/util/src/entities/Config.ts
@@ -164,8 +164,7 @@ export interface ConfigValue {
enabled: Boolean;
allowTemplateCreation: Boolean;
allowDiscordTemplates: Boolean;
- allowOtherInstancesTemplates: Boolean;
- allowExternalRaws: Boolean
+ allowRaws: Boolean;
}
}
@@ -332,7 +331,6 @@ export const DefaultConfigOptions: ConfigValue = {
enabled: true,
allowTemplateCreation: true,
allowDiscordTemplates: true,
- allowOtherInstancesTemplates: false, //Incomple
- allowExternalRaws: false
+ allowRaws: false
}
};
|