Skip to content

Commit

Permalink
[Fix] : 시험 배포 AccessKey, SecretKey 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
elyudwo committed May 16, 2024
1 parent 73c372b commit d0d97d5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class BookmarkController {

private final BookmarkService bookmarkService;

@Operation(summary = "북마크 저장, 삭제", description = "북마크가 되어있으면 삭제, 북마크 안되어있으면 북마크 생성")
@Operation(summary = "북마크 저장, 삭제", description = "북마크가 되어있으면 삭제, 북마크 안되어있으면 북마크 생성합니다")
@PostMapping("/v1/bookmark/{postId}")
public ResponseEntity<GetDoBookmarkResponse> saveBookMark(final UserId userId, @PathVariable final Long postId) {
final boolean created = bookmarkService.doBookMark(userId.getId(), postId);
Expand Down

0 comments on commit d0d97d5

Please sign in to comment.