1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-10 12:42:44 +01:00

Make the test client togglable

This commit is contained in:
Thesourtimes 2021-12-15 05:41:21 +03:00
parent 815b9074a5
commit fab28f5f1b

View File

@ -172,6 +172,9 @@ export interface ConfigValue {
allowTemplateCreation: Boolean;
allowDiscordTemplates: Boolean;
allowRaws: Boolean;
},
client: {
useTestClient: Boolean;
}
}
@ -346,5 +349,8 @@ export const DefaultConfigOptions: ConfigValue = {
allowTemplateCreation: true,
allowDiscordTemplates: true,
allowRaws: false
},
client: {
useTestClient: true
}
};