-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: jwt 라이브러리 추가 * fix: merge 과정에서 충돌 이슈 제거 * feat: 토큰 생성, 검증을 하는 TokenProvider 클래스 생성 * feat: SecurityConfig 클래스 추가 * feat: Jwt Filter 적용 * feat: UserDetailService 추가 및 Member에 메서드 추가 * feat: 로그인, 회원가입 시 필요한 dto 클래스 생성 * feat: 유저 회원가입 기능 구현 * feat: 유저 로그인 기능 구현 * feat: 공통 Exception 클래스들 추가 * refactor: LoginSuccessDto 추가 * feat: LoginSuccessDto 추가 * feat: 회원 정보 조회 기능 추가 * feat: 회원 정보 조회 기능 추가 * fix: securityConfig에서 posts url 허용 * feat: 회원 전체 목록 기능 구현 * feat: ErrorCode 적용 * feat: 단위 테스트 작성 * fix: postCount, postLike 값이 null이 들어가는 오류 수정 * refactor: 불필요한 코드 제거 * feat: 회원 로그인, 조회 예외 처리 * merge branch * 댓글 추천 기능 구현 (#55) * feat: 댓글 추천 기능 구현 * test: 댓글 추천 기능 단위 테스트 * test: 댓글 중복 추천 시 예외 처리 단위 테스트 * style: 각 코드의 구분자를 세미콜론에서 쉼표로 변경 * feat: 유저 정보를 업데이트 하는 메서드 추가 * refactor: merge 충돌 제거 * feat: 회원 정보 수정 기능 구현 * feat: 회원 정보 수정 단위 테스트 추가 * refactor: save 메서드 없이도 변경감지로 업데이트 적용 --------- Co-authored-by: Hanjaemo <[email protected]>
- Loading branch information
Showing
5 changed files
with
69 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
src/main/java/balancetalk/module/member/dto/MemberUpdateDto.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package balancetalk.module.member.dto; | ||
|
||
import balancetalk.module.member.domain.Member; | ||
import lombok.AllArgsConstructor; | ||
import lombok.Builder; | ||
import lombok.Data; | ||
import lombok.NoArgsConstructor; | ||
|
||
@Data | ||
@Builder | ||
@NoArgsConstructor | ||
@AllArgsConstructor | ||
public class MemberUpdateDto { | ||
private String nickname; | ||
private String password; | ||
|
||
public Member toEntity() { | ||
return Member.builder() | ||
.nickname(nickname) | ||
.password(password) | ||
.build(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters