dev add load and download file for moderatuion user
Test Workflow / test (push) Waiting to run

This commit is contained in:
vladp
2026-04-04 17:38:20 +07:00
parent f4fc1f26a7
commit 724e72c71a
12 changed files with 279 additions and 2 deletions
@@ -35,7 +35,8 @@ public class HandlerConfig {
ViolationNotionHandler violationNotionHandler,
ComplaintEntityHandler complaintEntityHandler,
UserInfoHandler userInfoHandler,
NotificationHandler notificationHandler
NotificationHandler notificationHandler,
UserVerificationHandler userVerificationHandler
) {
Map<Integer, RequestHandler> map = new HashMap<>();
map.put(20001, login);
@@ -62,6 +63,7 @@ public class HandlerConfig {
map.put(30013, complaintEntityHandler);
map.put(30014, userInfoHandler);
map.put(30015, notificationHandler);
map.put(30016, userVerificationHandler);
return map;
}