Skip to content

Commit

Permalink
fix: EmailVerifyCode 유효시간 수정 (3분->5분)
Browse files Browse the repository at this point in the history
  • Loading branch information
kimday0326 committed Jan 12, 2024
1 parent f06593c commit 177c9f2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

@Getter
@AllArgsConstructor
@RedisHash(value = "emailVerifyCode", timeToLive = 30 * 5) // 5분
@RedisHash(value = "emailVerifyCode", timeToLive = 60 * 5) // 5분
public class EmailVerifyCode {
@Id
private String code;
Expand Down

0 comments on commit 177c9f2

Please sign in to comment.