From 4a85e415a754a715d2e05122720cb69054ccce38 Mon Sep 17 00:00:00 2001 From: backdev-1 Date: Tue, 26 May 2026 11:45:43 +0700 Subject: [PATCH] dev add complaint all info with pagination --- .../java/ru/soune/nocopy/configuration/HandlerConfig.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/main/java/ru/soune/nocopy/configuration/HandlerConfig.java b/src/main/java/ru/soune/nocopy/configuration/HandlerConfig.java index 39db7b4..eb624e6 100644 --- a/src/main/java/ru/soune/nocopy/configuration/HandlerConfig.java +++ b/src/main/java/ru/soune/nocopy/configuration/HandlerConfig.java @@ -86,6 +86,7 @@ public class HandlerConfig { StatisticTokenHandler statisticTokenHandler, StatisticIncomeHandler statisticIncomeHandler, MonitoringStatisticHandler monitoringStatisticHandler, + FileEntityHandler file, UserInfoHandler userInfoHandler ) { @@ -101,6 +102,7 @@ public class HandlerConfig { map.put(30026, statisticIncomeHandler); map.put(30027, monitoringStatisticHandler); map.put(30029, statisticComplaintHandler); + map.put(20005, file); return map; } @@ -108,12 +110,14 @@ public class HandlerConfig { @Bean public Map internalControlHandler( ControlComplaintHandler controlComplaintHandler, - UserInfoHandler userInfoHandler + UserInfoHandler userInfoHandler, + FileEntityHandler file ) { Map map = new HashMap<>(); map.put(30014, userInfoHandler); map.put(30030, controlComplaintHandler); + map.put(20005, file); return map; }