-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Feature/#65/response code and message (#68) * feat: [#65] ResponseCodeAndMessage Enum 추가 및 BaseResponse 생성자 추가 * fix: Apple Silicon에서 Docker-Compose 파일 정상 동작 하도록 platform 옵션 추가 * refactor: [#65] Note Controller 및 Note ControllerTest에 대한 ResponseCodeAndMessage 수정 * refactor: [#65] Card Controller 및 Card ControllerTest에 대한 ResponseCodeAndMessage 수정 * refactor: [#65] Content Controller 및 Content ControllerTest에 대한 ResponseCodeAndMessage 수정 * docs: api 문서 업데이트 * Feature/#70/api exception handle (#71) * refactor: [#70] ResponseCodeAndMessage -> ResponseCodeAndMessages로 이름 변경 * refactor: [#70] interface CodeAndMessages 삭제 * chore: [#70] BaseResponse 부분 파라미터 변수 수정 * feat: [#70] Exception 처리를 위한 BaseException 및 ErrorCodeAndMessages, ExceptionHandler 추가 * feat: [#70] Domain Not Found 관련 Exception Class 생성 * refactor: [#70] Exception 사용하는 Service 및 Service Test 수정 * feat: [#74] 로그인 초기 작업 세팅 (Config, build.gradle 등) * feat: [#74] config 추가설정 (TestConfig 포함) * feat: [#74] Kakao Login 구현 * test: [#74] 로그인 기능 관련 테스트 추가 및 기존 컨트롤러 테스트에 Header 부분 추가 * feat: [#74] Card 관련 Login 로직 추가 및 리팩토링 진행 + 테스트 리팩토링 * feat: [#74] 로그인 관련 코드 수정 및 테스트 격리에 사용되는 데이터 수정 * feat: [#74] Content 관련 리팩토링 진행 * feat: [#74] Note 관련 리팩토링 진행 * docs: [#74] Restdocs 적용 완료
- Loading branch information
1 parent
6ed1267
commit 9c6afc5
Showing
72 changed files
with
1,629 additions
and
351 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
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
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
9 changes: 9 additions & 0 deletions
9
BE/src/main/java/dev/whatevernote/be/common/CodeAndMessages.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,9 @@ | ||
package dev.whatevernote.be.common; | ||
|
||
public interface CodeAndMessages { | ||
|
||
String getCode(); | ||
|
||
String getMessage(); | ||
|
||
} |
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
Oops, something went wrong.