dev add statistic files protected
Test Workflow / test (push) Successful in 3s

This commit is contained in:
vladp
2026-04-15 18:28:42 +07:00
parent 2d80b40b27
commit be62dd458a
8 changed files with 137 additions and 1 deletions
@@ -42,7 +42,8 @@ public class HandlerConfig {
StatisticUserFilesHandler statisticUserHandler,
StatisticTariffInfoFileHandler statisticTariffInfoFileHandler,
StatisticUserDynamicHandler statisticUserDynamicHandler,
StatisticProtectedFilesHandler statisticProtectedFilesHandler
StatisticProtectedFilesHandler statisticProtectedFilesHandler,
StatisticViolationHandler statisticViolationHandler
) {
Map<Integer, RequestHandler> map = new HashMap<>();
@@ -77,6 +78,7 @@ public class HandlerConfig {
map.put(30020, statisticTariffInfoFileHandler);
map.put(30021, statisticUserDynamicHandler);
map.put(30022, statisticProtectedFilesHandler);
map.put(30023, statisticViolationHandler);
return map;
}