dev add notification entity
Test Workflow / test (push) Successful in 4s

This commit is contained in:
vladp
2026-04-02 11:57:34 +07:00
parent 37abdeca9a
commit 0f2908b037
@@ -181,7 +181,7 @@ public class AuthService {
} }
public AuthToken getAuthToken(String token) { public AuthToken getAuthToken(String token) {
return authTokenRepository.findByToken(token).get(); return authTokenRepository.findByToken(token).orElse(null);
} }
private AuthToken genereateAuthToken(User user) { private AuthToken genereateAuthToken(User user) {