Skip to content

Commit

Permalink
refactor: SseConnectionApi 명세 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
5uhwann committed Jan 8, 2025
1 parent 2c535f5 commit 555f8da
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,13 @@
@RequestMapping("/server/sse")
public interface SseConnectionApi {

@Operation(summary = "SSE 구독")
@ApiResponse(responseCode = "200", description = "활동 보고서 전체 조회 성공")
@Operation(
summary = "SSE 구독",
description = "SSE 연결을 설정합니다. 연결 타임아웃은 60초입니다."
)
@ApiResponse(responseCode = "200", description = "SSE 구독 연결 성공")
@ApiResponse(responseCode = "401", description = "인증되지 않은 사용자")
@ApiResponse(responseCode = "500", description = "서버 오류")
@ResponseStatus(HttpStatus.OK)
@SecurityRequirement(name = "AccessToken")
@GetMapping(value = "/subscribe", produces = MediaType.TEXT_EVENT_STREAM_VALUE)
Expand Down

0 comments on commit 555f8da

Please sign in to comment.