Skip to content

Conversation

@hodoon
Copy link
Collaborator

@hodoon hodoon commented Apr 8, 2025

Release v1.0.2

변경 내용

  • 솜커톤 참가자 모집 API 생성

* fix: 면접 예약 API 면접 일정 조회시 status도 같이 반환

* fix: 면접 예약 API 예약자 명단 조회 API 추가

* fix: 면접 예약 API 예약되어있는 슬롯은 삭제하지 않는 기능 추가

* fix: 면접 예약자 조회 API 면접일, 면접시간, 면접을 예약한 날짜과 시간 추가

* feat: 솜커톤 참가자 모집 API 생성

* feat: 솜커톤 참가자 모집 API 요청 URL에 somkathon 추가

* fix: 솜커톤 참가자 모집 API comment 해결

* fix: 솜커톤 참가자 모집 API comment 해결
@hodoon hodoon requested review from Copilot and ysw789 April 8, 2025 13:55
Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot reviewed 10 out of 10 changed files in this pull request and generated 1 comment.


public SomParticipantResponseDto updateParticipant(Long id, SomParticipantRequestDto requestDto){
SomParticipant participant = findParticipantById(id);

Copy link

Copilot AI Apr 8, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The updateParticipant method does not validate for duplicate studentId, which may lead to conflicts if the studentId is modified. Consider adding a duplicate check similar to createParticipant before applying updates.

Suggested change
if (!participant.getStudentId().equals(requestDto.getStudentId())) {
validateDuplicatedStudentId(requestDto.getStudentId());
}

Copilot uses AI. Check for mistakes.
@hodoon hodoon merged commit 8a3cac2 into main Apr 8, 2025
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants