-
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.
GETP-211 refactor: people 컴포넌트 포트-어댑터 아키텍쳐 적용 (#141)
* GETP-211 refactor: people 컴포넌트의 api 모듈이 application 모듈의 in-port에 의존하도록 변경 * GETP-211 refactor: people 컴포넌트의 application 모듈이 out-port에 의존하도록 변경 * GETP-211 refactor: people 컴포넌트의 domain 모듈에서 JPA에 대한 의존성 제거 * GETP-211 rename: persistence.adapter.project.meeting.entity에서 persistence.adapter.project.meeting.model로 변경 * GETP-211 chore: MapStruct 라이브러리 버젼을 1.6.0으로 업데이트 * GETP-211 refactor: people 컴포넌트의 영속성 관련 기능을 persistence adapter로 분리 * GETP-211 fix: 프로젝트 의뢰 시 프로젝트 ID가 반환되지 않는 오류 수정 * GETP-211 fix: 프로젝트 지원 시 프로젝트 ID가 반환되지 않는 오류 수정
- Loading branch information
Showing
137 changed files
with
1,253 additions
and
1,185 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 was deleted.
Oops, something went wrong.
41 changes: 0 additions & 41 deletions
41
src/main/java/es/princip/getp/api/controller/common/dto/TechStacksResponse.java
This file was deleted.
Oops, something went wrong.
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
2 changes: 1 addition & 1 deletion
2
...a/es/princip/getp/api/controller/people/command/dto/request/EditPeopleProfileRequest.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
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
2 changes: 1 addition & 1 deletion
2
.../princip/getp/api/controller/people/command/dto/request/RegisterPeopleProfileRequest.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
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
2 changes: 1 addition & 1 deletion
2
...nd/dto/response/CreatePeopleResponse.java → .../dto/response/RegisterPeopleResponse.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package es.princip.getp.api.controller.people.command.dto.response; | ||
|
||
public record CreatePeopleResponse(Long peopleId) { | ||
public record RegisterPeopleResponse(Long peopleId) { | ||
} |
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
2 changes: 1 addition & 1 deletion
2
src/main/java/es/princip/getp/api/controller/people/query/dto/people/CardPeopleResponse.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
2 changes: 1 addition & 1 deletion
2
...ain/java/es/princip/getp/api/controller/people/query/dto/people/DetailPeopleResponse.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
Oops, something went wrong.