-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor/#87/user space pay 관련 api customexception 적용 #94
Merged
seongjunnoh
merged 7 commits into
develop
from
refactor/#87/user-space-pay-관련-api-customexception-적용
Aug 14, 2024
The head ref may contain hidden characters: "refactor/#87/user-space-pay-\uAD00\uB828-api-customexception-\uC801\uC6A9"
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
d3a18a0
refactor : UserException -> CustomException 변경
seongjunnoh 94839c2
fix : CustomExceptionControllerAdvice BaseErrorResponse 구성시 errorMess…
seongjunnoh f409849
refactor : 나머지 exception -> customException 으로 변경
seongjunnoh 8ae1569
Merge branch 'develop' of https://github.com/KUIT-Space/KUIT_Space_Ba…
seongjunnoh 92842bb
refactor : UserSpaceException 삭제
seongjunnoh cc1e5fb
refactor : 스페이스 생성 시 response로 spaceId 추가
seongjunnoh f2fc786
refactor : 내가 요청받은 정산 조회 api response에 송금해야할 은행 정보 추가
seongjunnoh File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
32 changes: 32 additions & 0 deletions
32
src/main/java/space/space_spring/dto/space/request/PostSpaceCreateDto.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,32 @@ | ||
package space.space_spring.dto.space.request; | ||
|
||
import jakarta.annotation.Nullable; | ||
import jakarta.validation.constraints.NotBlank; | ||
import lombok.AllArgsConstructor; | ||
import lombok.Getter; | ||
import lombok.NoArgsConstructor; | ||
import lombok.Setter; | ||
import org.hibernate.validator.constraints.Length; | ||
import org.springframework.web.multipart.MultipartFile; | ||
|
||
public class PostSpaceCreateDto { | ||
|
||
@Getter | ||
@Setter | ||
@NoArgsConstructor | ||
public static class Request { | ||
@Length(min = 1, max = 10, message = "이름은 10자이내의 문자열이어야 합니다.") | ||
@NotBlank(message = "스페이스 이름은 공백일 수 없습니다.") | ||
private String spaceName; | ||
|
||
@Nullable | ||
private MultipartFile spaceProfileImg; // 스페이스 프로필 이미지 (썸네일) | ||
} | ||
|
||
@Getter | ||
@AllArgsConstructor | ||
public static class Response { | ||
|
||
private Long spaceId; | ||
} | ||
} |
22 changes: 0 additions & 22 deletions
22
src/main/java/space/space_spring/dto/space/request/PostSpaceCreateRequest.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
20 changes: 0 additions & 20 deletions
20
src/main/java/space/space_spring/exception/MultipartFileException.java
This file was deleted.
Oops, something went wrong.
21 changes: 0 additions & 21 deletions
21
src/main/java/space/space_spring/exception/SpaceException.java
This file was deleted.
Oops, something went wrong.
20 changes: 0 additions & 20 deletions
20
src/main/java/space/space_spring/exception/UserException.java
This file was deleted.
Oops, something went wrong.
20 changes: 0 additions & 20 deletions
20
src/main/java/space/space_spring/exception/UserSpaceException.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
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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이 부분 잘 찾아 주셨네요! 좋습니다