-
Notifications
You must be signed in to change notification settings - Fork 8
feat: 관심 지역 및 국가 수정 API 추가 #453
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
whqtker
merged 15 commits into
solid-connection:develop
from
whqtker:feat/447-add-updating-interested-country-region-api
Aug 19, 2025
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
0d263f0
feat: 지역 변경 요청 DTO 구현
whqtker 9ee993a
feat: 관심 지역 변경 서비스 로직 작성
whqtker 40d8d5e
feat: 관심 지역 변경 컨트롤러 작성
whqtker 51b462b
fix: siteUser가 아니라 siteUserId로 삭제하도록
whqtker 81a0b5d
test: 관심 지역 및 국가 변경 테스트 작성
whqtker cda48f1
fix: clearAutomatically, flushAutomatically 옵션을 통해 DB와 영속성 컨텍스트 간 불일치…
whqtker acc0a0a
fix: 파라미터 순서 변경
whqtker 1c18a5d
chore: 불필요한 Modifying 어노테이션 제거
whqtker 21aac65
chore: 다건 삭제는 deleteBy 대신 deleteAllBy를 사용하도록
whqtker 5ed701f
chore: DTO에 Valid 어노테이션 추가
whqtker 91d99bd
chore: 크기 검증 제거 및 미사용 repository 제거
whqtker 90272f9
chore: 코드 리포매팅
whqtker bf67657
Merge branch 'develop' into feat/447-add-updating-interested-country-…
whqtker 6abb108
fix: conflict 해결
whqtker 2d2510e
refactor: 분명한 의미를 가진 엔드포인트 이름으로 변경
whqtker 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 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
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
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
10 changes: 10 additions & 0 deletions
10
src/main/java/com/example/solidconnection/siteuser/dto/LocationUpdateRequest.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 |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| package com.example.solidconnection.siteuser.dto; | ||
|
|
||
| import java.util.List; | ||
|
|
||
| public record LocationUpdateRequest( | ||
| List<String> interestedRegions, | ||
| List<String> interestedCountries | ||
| ) { | ||
|
|
||
| } | ||
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.
Uh oh!
There was an error while loading. Please reload this page.