Skip to content

Commit

Permalink
style: (#80) 개행 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
aiaiaiai1 committed Jul 25, 2023
1 parent 11af371 commit dac3fc5
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,10 @@ public ResponseEntity<VoteOptionStatisticsResponse> getVoteOptionStatistics(
@Operation(summary = "투표한 게시글 조회", description = "회원이 투표한 게시글 목록을 최신순으로 조회한다.")
@ApiResponse(responseCode = "200", description = "조회 성공")
@GetMapping("/votes/me")
public ResponseEntity<List<Post>> getPostsVotedOn(final Member member) {
public ResponseEntity<List<Post>> getPostsVotedOn(@Auth final Member member) {
final List<Post> postsVotedOn = postService.getPostsVotedOn(member);
return ResponseEntity.status(HttpStatus.OK).body(postsVotedOn);
}

}

0 comments on commit dac3fc5

Please sign in to comment.