Skip to content

Commit

Permalink
-로그인 이력 및 실패 관련 기록을 남기지 않도록 수정한다.
Browse files Browse the repository at this point in the history
  • Loading branch information
hangum committed Mar 4, 2020
1 parent 4d16bcd commit 5d1363b
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -201,10 +201,10 @@ protected void saveWrongLoginHistory(String strEmail, String ip_servletRequest,
List<UserDAO> listUser = TadpoleSystem_UserQuery.findExistUser(strEmail);
if(!listUser.isEmpty()) {
UserDAO userDao = listUser.get(0);
saveLoginHistory(userDao.getSeq(), ip_servletRequest, strYesNO, strReason);

// 마지막 성공이후 5번 이상 패스워드가 틀렸을 경우 계정을 잠급니다.
TadpoleSystem_UserQuery.failLoginCheck(5, userDao.getSeq(), userDao.getEmail());
// saveLoginHistory(userDao.getSeq(), ip_servletRequest, strYesNO, strReason);
//
// // 마지막 성공이후 5번 이상 패스워드가 틀렸을 경우 계정을 잠급니다.
// TadpoleSystem_UserQuery.failLoginCheck(5, userDao.getSeq(), userDao.getEmail());

}
} catch (Exception e) {
Expand Down

0 comments on commit 5d1363b

Please sign in to comment.