add token life by hour
Test Workflow / test (push) Successful in 4s

This commit is contained in:
vladp
2026-01-05 16:26:46 +07:00
parent bd9ecd4f84
commit 0da0404488
16 changed files with 150 additions and 53 deletions
@@ -16,7 +16,8 @@ public class HandlerConfig {
LoginRequestHandler login,
FileUploadHandler upload,
FileEntityHandler file,
LogoutRequestHandler logoutHandler
LogoutRequestHandler logoutHandler,
AuthRequestHandler authRequestHandler
) {
Map<Integer, RequestHandler> map = new HashMap<>();
map.put(20001, login);
@@ -24,6 +25,7 @@ public class HandlerConfig {
map.put(20004, upload);
map.put(20005, file);
map.put(20006, logoutHandler);
map.put(20007, authRequestHandler);
return map;
}