mirror of
https://github.com/Sheldan/abstracto.git
synced 2026-03-24 05:39:44 +00:00
[AB-69] adding templating support to help modules
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user