[web-35-3] 관리자 캘린더 일정 삭제 API 구현#27
Merged
Merged
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
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.
작업 내용
관리자 페이지에서 캘린더 일정을 일괄 삭제할 수 있는 API를 구현합니다. 멀티 선택을 지원합니다.
변경 사항
DELETE /api/v1/admin/calendar엔드포인트 구현@RequestParam+@NotEmpty검증 (@Validated적용)AdminCalendarService.delete()구현CalendarScheduleRepository에countByCalendarIdIn()추가API
캘린더 일정 삭제
DELETE /api/v1/admin/calendar?calendarIds=1&calendarIds=2&calendarIds=3Request: Query Parameter
calendarIds(필수, 1개 이상)Response:
200 OK{ "success": true, "data": null }Error - calendarIds 미전달:
400 Bad RequestError - 존재하지 않는 ID:
404 Not Found테스트