Skip to content

Commit

Permalink
Release 2023-12-17 17:41:00
Browse files Browse the repository at this point in the history
Release 2023-12-17 17:41:00
  • Loading branch information
yujindonut authored Dec 17, 2023
2 parents dfbd8d4 + 10c1d61 commit c359e51
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public ResponseEntity<PostUpdateResponse> updatePost(
@Parameter(hidden = true) @AuthenticationPrincipal InternalMemberDetails memberDetails,
@RequestBody PostUpdateRequest request
) {
val response = communityPostService.updatePost(1L, request);
val response = communityPostService.updatePost(memberDetails.getId(), request);
return ResponseEntity.status(HttpStatus.OK).body(response);
}

Expand Down

0 comments on commit c359e51

Please sign in to comment.