feat: cat remove

This commit is contained in:
2025-12-27 17:06:27 +01:00
parent f76ca43ed6
commit 0dace76fc3
5 changed files with 94 additions and 5 deletions

View File

@@ -30,4 +30,8 @@ public class SSCategorie {
public static Uni<Void> sendTreeCategory(WebSocketConnection connection, List<TreeEntity> treeEntities) {
return CompetitionWS.sendNotifyToOtherEditor(connection, "sendTreeCategory", treeEntities);
}
public static Uni<?> sendDelCategory(WebSocketConnection connection, Long id) {
return CompetitionWS.sendNotifyToOtherEditor(connection, "sendDelCategory", id);
}
}