Skip to content

Commit

Permalink
[SAMBAD-296] 자신의 릴레이 질문 활성화 시 요청 스펙 버그 수정 (#136)
Browse files Browse the repository at this point in the history
  • Loading branch information
nahyeon99 authored Aug 24, 2024
1 parent 4b9d8d9 commit f2226da
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,8 @@ public ResponseEntity<MeetingMemberListResponse> updateMeetingQuestionActive(
@UserId Long userId,
@Parameter(description = "모임 ID", example = "1", required = true)
@Positive @PathVariable Long meetingId,
@Parameter(description = "활성화 모임 질문 ID 리스트", example = "1,2,3", required = true)
@RequestParam(value = "activeMeetingQuestionIds")
@Parameter(description = "활성화 모임 질문 ID 리스트", example = "1,2,3")
@RequestParam(value = "activeMeetingQuestionIds", required = false)
List<Long> activeMeetingQuestionIds
) {
meetingAnswerService.updateHidden(userId, meetingId, activeMeetingQuestionIds);
Expand Down

0 comments on commit f2226da

Please sign in to comment.