
--- client/views/pages/adm/system/LoginPolicy/LoginPolicy.vue
+++ client/views/pages/adm/system/LoginPolicy/LoginPolicy.vue
... | ... | @@ -170,14 +170,14 @@ |
170 | 170 |
|
171 | 171 |
try { |
172 | 172 |
const loginPolicy = {}; |
173 |
- loginPolicy.allowMultipleLogin = this.allowMultipleLogin; |
|
173 |
+ loginPolicy.mltLgnPrmYn = this.allowMultipleLogin; |
|
174 | 174 |
await saveByLoginPolicy(loginPolicy); |
175 | 175 |
|
176 | 176 |
await this.performGlobalLogout(); |
177 | 177 |
|
178 | 178 |
alert('중복 로그인 설정이 저장되었습니다.'); |
179 |
- |
|
180 |
- this.simpleCleanupAndRedirect(); |
|
179 |
+ |
|
180 |
+ this.performCompleteCleanupAndRedirect(); |
|
181 | 181 |
|
182 | 182 |
} catch (err) { |
183 | 183 |
alert('중복 로그인 설정 저장 실패: ' + (err.response?.data?.message || err.message)); |
... | ... | @@ -197,14 +197,14 @@ |
197 | 197 |
|
198 | 198 |
try { |
199 | 199 |
const loginMode = {}; |
200 |
- loginMode.lgnMode = this.lgnMode; |
|
200 |
+ loginMode.lgnMth = this.lgnMode; |
|
201 | 201 |
await saveByLoginMode(loginMode); |
202 | 202 |
|
203 | 203 |
await this.performGlobalLogout(); |
204 | 204 |
|
205 | 205 |
alert('로그인 방식이 변경되었습니다.\n다시 로그인해주세요.'); |
206 |
- |
|
207 |
- this.simpleCleanupAndRedirect(); |
|
206 |
+ |
|
207 |
+ this.performCompleteCleanupAndRedirect(); |
|
208 | 208 |
|
209 | 209 |
} catch (err) { |
210 | 210 |
alert('로그인 방식 저장 실패: ' + (err.response?.data?.message || err.message)); |
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?