Skip to content

Commit

Permalink
Merge pull request #228 from 1223v/redis
Browse files Browse the repository at this point in the history
Fix: 번호 인증 유지 시간 변경 (5min->3min)
  • Loading branch information
1223v authored Mar 26, 2024
2 parents 9781bea + 174b8b4 commit f44ed53
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ public class VerificationService {

public String createVerificationCode(String phoneNumber, boolean someBooleanValue) {
String code = UUID.randomUUID().toString().substring(0, 6);
redisTemplate.opsForValue().set(phoneNumber + ":code", code, 5, TimeUnit.MINUTES);
redisTemplate.opsForValue().set(phoneNumber + ":flag", String.valueOf(someBooleanValue), 5, TimeUnit.MINUTES);
redisTemplate.opsForValue().set(phoneNumber + ":code", code, 3, TimeUnit.MINUTES);
redisTemplate.opsForValue().set(phoneNumber + ":flag", String.valueOf(someBooleanValue), 3, TimeUnit.MINUTES);
return code;
}

Expand All @@ -28,7 +28,7 @@ public boolean verifyCode(String phoneNumber, String code) {
String storedCode = redisTemplate.opsForValue().get(storedCodeKey);
if (storedCode != null && storedCode.equals(code)) {
// 인증 코드가 일치하면 플래그 값을 true로 설정
redisTemplate.opsForValue().set(flagKey, "true", 5, TimeUnit.MINUTES);
redisTemplate.opsForValue().set(flagKey, "true", 3, TimeUnit.MINUTES);
return true;
} else {
return false;
Expand Down

0 comments on commit f44ed53

Please sign in to comment.