-
Notifications
You must be signed in to change notification settings - Fork 3
[refactor] 동아리 지원서 양식을 부분적으로 수정가능하게만든다 #834
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
Merged
lepitaaar
merged 6 commits into
develop/be
from
refactor/#833-change-method-update-application-form-controller-MOA-317
Nov 14, 2025
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
a19bcee
refactor: 수정 요청 dto 변경
lepitaaar 551d107
test: 수정 요청 dto 변경에 따라 입력 필드 추가
lepitaaar 992777b
refactor: 지원서 양식 api PUT 메서드 PATCH로 변경
lepitaaar dc2aad0
refactor: 메서드 분리 및 부분 업데이트 추가
lepitaaar 0ee6088
feat: semesterYear, Term 수정기능 추가
lepitaaar 10bfd34
fix: 검증값 변경
lepitaaar 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
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or 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
18 changes: 10 additions & 8 deletions
18
backend/src/main/java/moadong/club/payload/request/ClubApplicationFormEditRequest.java
This file contains hidden or 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,25 +1,27 @@ | ||
| package moadong.club.payload.request; | ||
|
|
||
| import jakarta.validation.Valid; | ||
| import jakarta.validation.constraints.NotBlank; | ||
| import jakarta.validation.constraints.NotNull; | ||
| import jakarta.validation.constraints.Size; | ||
| import jakarta.validation.constraints.*; | ||
| import moadong.club.enums.SemesterTerm; | ||
|
|
||
| import java.util.List; | ||
|
|
||
| public record ClubApplicationFormEditRequest( | ||
| @NotBlank | ||
| @Size(max = 50) | ||
| String title, | ||
|
|
||
| @NotBlank | ||
| @Size(max = 3000) | ||
| String description, | ||
|
|
||
| @NotNull | ||
| Boolean active, | ||
|
|
||
| @NotNull | ||
| @Valid | ||
| List<ClubApplyQuestion> questions | ||
| List<ClubApplyQuestion> questions, | ||
|
|
||
| @Min(2000) | ||
| @Max(2999) | ||
| Integer semesterYear, | ||
|
|
||
| SemesterTerm semesterTerm | ||
| ) { | ||
| } |
This file contains hidden or 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 hidden or 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.
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.
부분 업데이트 꽤나 좋군여,,