Skip to content

Commit

Permalink
fix : api response http status 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
seokho-1116 committed May 9, 2024
1 parent b6c1528 commit 0c9ebae
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,7 @@ public ResponseEntity<ApiSpec<String>> deleteGroupById(
) {
groupService.deleteGroup(memberId, groupId);

return ResponseEntity.accepted()
.body(
ApiSpec.empty(
SuccessCode.ACCEPTED
)
);
return ResponseEntity.ok(ApiSpec.empty(SuccessCode.SUCCESS));
}

@Override
Expand Down

0 comments on commit 0c9ebae

Please sign in to comment.