From 394259c2c701b0eb6c255d0614996c36b2622240 Mon Sep 17 00:00:00 2001 From: backdev-1 Date: Fri, 8 May 2026 11:57:29 +0700 Subject: [PATCH] dev add method link --- src/main/java/ru/soune/nocopy/handler/UserInfoHandler.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/ru/soune/nocopy/handler/UserInfoHandler.java b/src/main/java/ru/soune/nocopy/handler/UserInfoHandler.java index 850723b..e2f78c5 100644 --- a/src/main/java/ru/soune/nocopy/handler/UserInfoHandler.java +++ b/src/main/java/ru/soune/nocopy/handler/UserInfoHandler.java @@ -50,8 +50,8 @@ public class UserInfoHandler implements RequestHandler { log.info("Processing UserInfoHandler with action: {}", body.getAction()); return switch (body.getAction()) { - case "getAll" -> getAllAdditionalInfos(request); - case "getAllWithPagination" -> getAllAdditionalInfoWithPagination(request, body); +// case "getAll" -> getAllAdditionalInfos(request); + case "getAll" -> getAllAdditionalInfoWithPagination(request, body); case "getById" -> getAdditionalInfoById(request, body.getUserId()); case "update" -> updateAdditionalInfo(request, body); case "delete" -> deleteAdditionalInfo(request, body.getUserId());