
--- src/main/java/com/takensoft/common/config/SecurityConfig.java
+++ src/main/java/com/takensoft/common/config/SecurityConfig.java
... | ... | @@ -93,7 +93,6 @@ |
93 | 93 |
LgnHstryService lgnHstryService, CustomAuthenticationEntryPoint authenticationEntryPoint, CustomAccessDenieHandler accessDenieHandler, HttpRequestUtil httpRequestUtil, |
94 | 94 |
LoginModeService loginModeService, LoginPolicyService loginPolicyService, EmailServiceImpl emailServiceImpl, SessionUtil sessionUtil, @Value("${front.url}") String fUrl, @Value("${jwt.accessTime}") long aTime, @Value("${jwt.refreshTime}") long rTime, @Value("${cookie.time}") int ctime, RedisTemplate<String, String> redisTemplate, |
95 | 95 |
LoginUtil loginUtil) { |
96 |
- |
|
97 | 96 |
this.authenticationConfiguration = authenticationConfiguration; |
98 | 97 |
this.refreshTokenService = refreshTokenService; |
99 | 98 |
this.lgnHstryService = lgnHstryService; |
... | ... | @@ -106,12 +105,14 @@ |
106 | 105 |
this.appConfig = appConfig; |
107 | 106 |
this.loginModeService = loginModeService; |
108 | 107 |
this.loginPolicyService = loginPolicyService; |
108 |
+ this.emailServiceImpl = emailServiceImpl; |
|
109 | 109 |
this.sessionUtil = sessionUtil; |
110 | 110 |
this.FRONT_URL = fUrl; |
111 | 111 |
this.JWT_ACCESSTIME = aTime; |
112 | 112 |
this.JWT_REFRESHTIME = rTime; |
113 | 113 |
this.COOKIE_TIME = ctime; |
114 | 114 |
this.redisTemplate = redisTemplate; |
115 |
+ this.loginUtil = loginUtil; |
|
115 | 116 |
} |
116 | 117 |
|
117 | 118 |
/** |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?