Skip to content

Commit

Permalink
Merge pull request #172 from 4bujak-4bujak/feature/member_modal
Browse files Browse the repository at this point in the history
refactor: #168 memberModalIgnoredTime 이 null 로 들어가는 현상 수정
  • Loading branch information
KimSangwoo1259 authored Jun 11, 2024
2 parents 9042fd5 + 07c6c91 commit 34a4360
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/com/example/sabujak/member/entity/Member.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

import java.security.SecureRandom;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.ArrayList;
import java.util.List;

Expand Down Expand Up @@ -90,6 +91,9 @@ private Member(String memberEmail, String memberPassword, String memberName, Str
this.memberJob = memberJob;
this.memberSmsAgree = memberSmsAgree;
this.memberNickname = generateRandomNickname();
this.memberModalIgnoredTime = LocalDateTime.parse(
"2024-06-09 11:11:11.111",
DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss.SSS"));
}

public void signOut() {
Expand Down

0 comments on commit 34a4360

Please sign in to comment.