-
Notifications
You must be signed in to change notification settings - Fork 1
[BUILD FAIL] Feature/63 봉사자 조회, 상세 조회, 검증 #87
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
Closed
Closed
Conversation
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
- Volunteer, VolunteerDetail 데이터 매핑. - VolunteerDetail 포함/미포함 두 가지 방식 지원.
- 리플렉션을 이용해서 status를 수정.
- 센터 아이디로 종료되지 않았고 삭제되지 않은 RecruitBoard의 아이디 리스트를 반환 - 자동 정렬
- save: 봉사 신청 데이터를 저장 - findById: 봉사 신청 ID로 조회 - findVolunteerIdsByRecruitIds: 모집글 ID 리스트로 봉사자 ID 리스트 조회 - findAllByRecruitId: 모집글 ID로 페이징된 봉사 신청 조회 - isNotDeleted: 논리 삭제된 데이터 제외 조건 추가 - toOrderSpecifiers: Sort 객체를 기반으로 정렬 조건 생성 - getCount: 페이징 처리를 위한 총 데이터 개수 조회 메서드 추가
…리스트 조회 추가 - getNotCompletedIdsByCenterIds
- getVolunteerIdsByRecruitIds: 모집글 ID 리스트로 봉사자 ID 리스트 조회
- 완료되지 않은 모집글 ID 조회 및 봉사자 ID와의 매칭 검증 - 타겟 봉사자 ID가 모집글과 연관되지 않은 경우 예외 처리 - RecruitBoardQueryUseCase와 VolunteerApplyQueryUseCase를 활용
- beforeEach 를 transactional로 변경
3 tasks
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.
빌드에 실패했습니다.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
resolved :
📌 과제 설명
봉사자 조회 및 검증 기능을 구현했습니다.
기관, 봉사자, 봉사 모집, 봉사 신청의 상호작용으로 검증을 구현했으며, 이를 위한 조회 로직을 추가했습니다.
👩💻 요구 사항과 구현 내용
봉사자 프로필 조회
추가 기능
BadRequestException오버로딩:ExceptionMessage타입을 인자로 받을 수 있도록 변경✅ PR 포인트 & 궁금한 점
VolunteerDetailAccessValidator에 대한 가감없는 리뷰를 부탁드립니다.