Skip to content

Commit

Permalink
Hotfix: 학과명 영어 -> 한글
Browse files Browse the repository at this point in the history
  • Loading branch information
KoungQ committed Jul 31, 2024
1 parent 43f9d70 commit 10dc3aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/leets/weeth/domain/user/entity/User.java
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public void update(UserDTO.Update dto, PasswordEncoder passwordEncoder) {
this.password = passwordEncoder.encode(dto.password());
this.studentId = dto.studentId();
this.tel = dto.tel();
this.department = dto.department();
this.department = Department.valueOf(dto.department());
}

public void accept() {
Expand Down

0 comments on commit 10dc3aa

Please sign in to comment.