Skip to content

Commit

Permalink
docs: 세션 시간 반환 API 스웨거 설명 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
gikhoon committed Aug 20, 2024
1 parent 70a2ffc commit 5d18d01
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public ResponseEntity<List<SessionListResponse>> findSessionsByGenerationId(@Req
return ResponseEntity.status(HttpStatus.OK).body(sessionService.findSessionsByGenerationId(generationId));
}

@Operation(summary = "세션 시간, 장소 반환 API")
@Operation(summary = "세션 시간 반환 API")
@GetMapping("/{sessionId}/info")
public ResponseEntity<SessionDetailInfoResponse> findSessionDetailInfo(@PathVariable("sessionId") Long sessionId) {
return ResponseEntity.status(HttpStatus.OK).body(sessionService.findSessionDetailInfo(sessionId));
Expand Down

0 comments on commit 5d18d01

Please sign in to comment.