Missing tokenResolver.
This commit is contained in:
@@ -33,6 +33,7 @@ public class AuthController {
|
|||||||
private final JwtUtil jwtUtil;
|
private final JwtUtil jwtUtil;
|
||||||
private final UserService userAuthService;
|
private final UserService userAuthService;
|
||||||
private final EncryptionService encryptionService;
|
private final EncryptionService encryptionService;
|
||||||
|
private final TokenResolver tokenResolver;
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private PasswordEncoder passwordEncoder;
|
private PasswordEncoder passwordEncoder;
|
||||||
@@ -41,11 +42,13 @@ public class AuthController {
|
|||||||
JwtUtil jwtUtil,
|
JwtUtil jwtUtil,
|
||||||
UserService userAuthService,
|
UserService userAuthService,
|
||||||
EncryptionService encryptionService,
|
EncryptionService encryptionService,
|
||||||
|
TokenResolver tokenResolver,
|
||||||
Environment environment) {
|
Environment environment) {
|
||||||
this.authenticationManager = authenticationManager;
|
this.authenticationManager = authenticationManager;
|
||||||
this.jwtUtil = jwtUtil;
|
this.jwtUtil = jwtUtil;
|
||||||
this.userAuthService = userAuthService;
|
this.userAuthService = userAuthService;
|
||||||
this.encryptionService = encryptionService;
|
this.encryptionService = encryptionService;
|
||||||
|
this.tokenResolver = tokenResolver;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static String stripBOM(String s) {
|
private static String stripBOM(String s) {
|
||||||
|
|||||||
Reference in New Issue
Block a user