Missing tokenResolver.
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user