add feature toggling

This commit is contained in:
Lee
2024-06-30 05:15:37 +01:00
parent 93350f1506
commit ee6456e4d8
14 changed files with 315 additions and 11 deletions

View File

@ -1,6 +1,7 @@
package cc.fascinated.bat.model;
import cc.fascinated.bat.common.ProfileHolder;
import cc.fascinated.bat.features.FeatureProfile;
import cc.fascinated.bat.features.namehistory.profile.guild.NameHistoryProfile;
import cc.fascinated.bat.service.DiscordService;
import lombok.*;
@ -75,6 +76,15 @@ public class BatGuild extends ProfileHolder {
return getProfile(NameHistoryProfile.class);
}
/**
* Gets the feature profile
*
* @return the feature profile
*/
public FeatureProfile getFeatureProfile() {
return getProfile(FeatureProfile.class);
}
@AllArgsConstructor
@Getter
@Setter