[AB-69] adding templating support to help modules

This commit is contained in:
Sheldan
2021-02-14 14:20:01 +01:00
parent 34b9bca7ac
commit 23bdf4e906
15 changed files with 18 additions and 22 deletions

View File

@@ -11,7 +11,7 @@ public class ChannelsModuleInterface implements ModuleInterface {
@Override
public ModuleInfo getInfo() {
return ModuleInfo.builder().name(CHANNELS).description("Includes utilities to configure the channel configuration stored in the database").build();
return ModuleInfo.builder().name(CHANNELS).templated(true).build();
}
@Override

View File

@@ -11,7 +11,7 @@ public class ConfigModuleInterface implements ModuleInterface {
@Override
public ModuleInfo getInfo() {
return ModuleInfo.builder().name(CONFIG).description("Utilities to configure the bot.").build();
return ModuleInfo.builder().name(CONFIG).templated(true).build();
}
@Override

View File

@@ -12,7 +12,7 @@ public class SupportModuleInterface implements ModuleInterface {
@Override
public ModuleInfo getInfo() {
return ModuleInfo.builder().name(SUPPORT).description("Utilities for support").build();
return ModuleInfo.builder().name(SUPPORT).templated(true).build();
}
@Override