-
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.
Merge pull request #55 from KTB16Team/feature/44-mypage
feat: private post 과실 비율 세분화 및 로직 추가
- Loading branch information
Showing
50 changed files
with
215 additions
and
182 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
4 changes: 2 additions & 2 deletions
4
backend/src/main/java/aimo/backend/common/mapper/AudioRecordMapper.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
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: 0 additions & 9 deletions
9
backend/src/main/java/aimo/backend/domains/member/dto/SaveProfileImageMetaData.java
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
...ber/dto/CreateProfileImageUrlRequest.java → ...request/CreateProfileImageUrlRequest.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
...end/domains/member/dto/DeleteRequest.java → ...ins/member/dto/request/DeleteRequest.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 aimo.backend.domains.member.dto; | ||
package aimo.backend.domains.member.dto.request; | ||
|
||
public record DeleteRequest(String password) { | ||
} |
2 changes: 1 addition & 1 deletion
2
...end/domains/member/dto/LogOutRequest.java → ...ins/member/dto/request/LogOutRequest.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
9 changes: 9 additions & 0 deletions
9
...rc/main/java/aimo/backend/domains/member/dto/request/SaveProfileImageMetaDataRequest.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 aimo.backend.domains.member.dto.request; | ||
|
||
public record SaveProfileImageMetaDataRequest( | ||
String filename, | ||
String extension, | ||
Long size, | ||
String url | ||
) { | ||
} |
2 changes: 1 addition & 1 deletion
2
...ber/dto/SendTemporaryPasswordRequest.java → ...request/SendTemporaryPasswordRequest.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
...end/domains/member/dto/SignUpRequest.java → ...ins/member/dto/request/SignUpRequest.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
...ins/member/dto/UpdateNicknameRequest.java → ...er/dto/request/UpdateNicknameRequest.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 aimo.backend.domains.member.dto; | ||
package aimo.backend.domains.member.dto.request; | ||
|
||
public record UpdateNicknameRequest(String newNickname) { | ||
} |
2 changes: 1 addition & 1 deletion
2
...ins/member/dto/UpdatePasswordRequest.java → ...er/dto/request/UpdatePasswordRequest.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
...dto/ValidateDuplicateNicknameRequest.java → ...est/ValidateDuplicateNicknameRequest.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 aimo.backend.domains.member.dto; | ||
package aimo.backend.domains.member.dto.request; | ||
|
||
public record ValidateDuplicateNicknameRequest(String nickname) { | ||
} |
2 changes: 1 addition & 1 deletion
2
...omains/member/dto/FindMyInfoResponse.java → ...mber/dto/response/FindMyInfoResponse.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
...ns/member/dto/NicknameExistsResponse.java → .../dto/response/NicknameExistsResponse.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 aimo.backend.domains.member.dto; | ||
package aimo.backend.domains.member.dto.response; | ||
|
||
public record NicknameExistsResponse(boolean exists) { | ||
} |
2 changes: 1 addition & 1 deletion
2
...er/dto/SendTemporaryPasswordResponse.java → ...sponse/SendTemporaryPasswordResponse.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
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
3 changes: 1 addition & 2 deletions
3
.../domains/post/dto/SinglePostResponse.java → ...post/dto/response/SinglePostResponse.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
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
10 changes: 0 additions & 10 deletions
10
backend/src/main/java/aimo/backend/domains/privatePost/dto/CreateResourceUrl.java
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
backend/src/main/java/aimo/backend/domains/privatePost/dto/JudgementFromAIResponse.java
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
backend/src/main/java/aimo/backend/domains/privatePost/dto/TextRecordRequest.java
This file was deleted.
Oops, something went wrong.
3 changes: 1 addition & 2 deletions
3
...Post/dto/AudioRecordPresignedRequest.java → .../request/AudioRecordPresignedRequest.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
...ns/privatePost/dto/ChatRecordRequest.java → ...tePost/dto/request/ChatRecordRequest.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.