Missing tokenResolver.
Some checks failed
Build & Deploy Backend / build (push) Failing after 41s
Build & Deploy Backend / deploy (push) Has been skipped

This commit is contained in:
2025-10-10 10:56:31 +08:00
parent 69721ba411
commit 0844780949

View File

@@ -33,6 +33,7 @@ public class AuthController {
private final JwtUtil jwtUtil;
private final UserService userAuthService;
private final EncryptionService encryptionService;
private final TokenResolver tokenResolver;
@Autowired
private PasswordEncoder passwordEncoder;
@@ -41,11 +42,13 @@ public class AuthController {
JwtUtil jwtUtil,
UserService userAuthService,
EncryptionService encryptionService,
TokenResolver tokenResolver,
Environment environment) {
this.authenticationManager = authenticationManager;
this.jwtUtil = jwtUtil;
this.userAuthService = userAuthService;
this.encryptionService = encryptionService;
this.tokenResolver = tokenResolver;
}
private static String stripBOM(String s) {