Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ public ResponseEntity<ApiResponse<CreateGroupResponse>> createGroupResponse(

return ResponseEntity
.status(HttpStatus.CREATED)
.body(ApiResponse.success(response));
.body(ApiResponse.success(
HttpStatus.CREATED.value(),
response));
}

// 모임 참여
Expand All @@ -47,7 +49,8 @@ public ResponseEntity<ApiResponse<GetGroupResponse>> attendGroup(

return ResponseEntity
.status(HttpStatus.OK)
.body(ApiResponse.success(response));
.body(ApiResponse.success(
HttpStatus.OK.value(),response));
Copy link

Copilot AI Dec 9, 2025

Choose a reason for hiding this comment

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

Missing space after comma. Should be HttpStatus.OK.value(), response to maintain consistent formatting with the rest of the codebase.

Suggested change
HttpStatus.OK.value(),response));
HttpStatus.OK.value(), response));

Copilot uses AI. Check for mistakes.
}

// 모임 참여 취소
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public ResponseEntity<ApiResponse<PreUploadGroupImageResponse>> uploadImages(

return ResponseEntity
.status(HttpStatus.CREATED)
.body(ApiResponse.success(response));
.body(ApiResponse.success(HttpStatus.CREATED.value(), response));
}

// 모임 이미지 수정
Expand Down