[AB-xxx] adding command to automatically ban all honeypot users

refactored honeypot listener into a service
fixing transfer credits not requiring the inputs
This commit is contained in:
Sheldan
2026-03-29 11:02:47 +02:00
parent 81b1688d97
commit 7f12ac7107
11 changed files with 325 additions and 87 deletions

View File

@@ -0,0 +1,10 @@
package dev.sheldan.abstracto.moderation.model.template.command;
import lombok.Builder;
import lombok.Getter;
@Builder
@Getter
public class HoneyPotBanResponseModel {
private Integer bannedMemberCount;
}