Skip to content

Commit

Permalink
[REFACTOR]: 회원 가입 시 승인 대기 상태로 지정
Browse files Browse the repository at this point in the history
  • Loading branch information
phonil committed Aug 21, 2024
1 parent 2d45dd0 commit 4282f9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/mvp/deplog/domain/member/domain/Member.java
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public Member(String email, String password, String name, int generation, Part p
this.email = email;
this.password = password;
this.name = name;
this.role = Role.MEMBER;
this.role = Role.APPLICANT;
this.generation = generation;
this.part = part;
this.avatarFace = null;
Expand Down

0 comments on commit 4282f9a

Please sign in to comment.