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

This commit is contained in:
vladp
2026-04-16 00:54:44 +07:00
parent db3dcb8166
commit bbf8e3ee3d
7 changed files with 179 additions and 1 deletions
@@ -44,7 +44,8 @@ public class HandlerConfig {
StatisticUserDynamicHandler statisticUserDynamicHandler,
StatisticProtectedFilesHandler statisticProtectedFilesHandler,
StatisticViolationHandler statisticViolationHandler,
StatisticSubscriberHandler statisticSubscriberHandler
StatisticSubscriberHandler statisticSubscriberHandler,
StatisticTokenHandler statisticTokenHandler
) {
Map<Integer, RequestHandler> map = new HashMap<>();
@@ -81,6 +82,7 @@ public class HandlerConfig {
map.put(30022, statisticProtectedFilesHandler);
map.put(30023, statisticViolationHandler);
map.put(30024, statisticSubscriberHandler);
map.put(30025, statisticTokenHandler);
return map;
}