Add file info public
Test Workflow / test (push) Has been cancelled

This commit is contained in:
2026-06-02 12:11:35 +07:00
parent 74dfbe2ae4
commit 1a2eaaacab
@@ -43,7 +43,6 @@ LogoutRequestHandler logoutHandler
TariffHandler tariffHandler, TariffHandler tariffHandler,
TariffInfoHandler tariffInfoHandler, TariffInfoHandler tariffInfoHandler,
ReferralHandler referralHandler, ReferralHandler referralHandler,
ResetPasswordHandler resetPasswordHandler,
PaymentHandler paymentHandler, PaymentHandler paymentHandler,
CostHandler costHandler, CostHandler costHandler,
MonitoringHandler monitoringHandler, MonitoringHandler monitoringHandler,
@@ -65,7 +64,6 @@ LogoutRequestHandler logoutHandler
map.put(20007, imageFoundRequestHandler); map.put(20007, imageFoundRequestHandler);
map.put(20008, authRequestHandler); map.put(20008, authRequestHandler);
map.put(20009, verifyRegisterUser); map.put(20009, verifyRegisterUser);
map.put(20010, resetPasswordHandler);
map.put(30000, companyHandler); map.put(30000, companyHandler);
map.put(30001, tariffHandler); map.put(30001, tariffHandler);
map.put(30002, tariffInfoHandler); map.put(30002, tariffInfoHandler);
@@ -144,13 +142,15 @@ LogoutRequestHandler logoutHandler
public Map<Integer, RequestHandler> authHandler( public Map<Integer, RequestHandler> authHandler(
RegRequestHandler reg, RegRequestHandler reg,
LoginRequestHandler login, LoginRequestHandler login,
DaDataHandler daDataHandler DaDataHandler daDataHandler,
ResetPasswordHandler resetPasswordHandler
) )
{ {
Map<Integer, RequestHandler> map = new HashMap<>(); Map<Integer, RequestHandler> map = new HashMap<>();
map.put(20001, login); map.put(20001, login);
map.put(20002, reg); map.put(20002, reg);
map.put(30004, daDataHandler); map.put(30004, daDataHandler);
map.put(20010, resetPasswordHandler);
return map; return map;
} }