Skip to content

Commit

Permalink
[FIX] 에러 메세지 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
mikekks committed Jan 18, 2024
1 parent a9d3672 commit 71c7350
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ ResponseEntity<SuccessResponse<MemberAuthResponseDTO>> login(
@ApiResponses(
value = {
@ApiResponse(responseCode = "200", description = "리프레시 토큰 재발급에 성공하였습니다."),
@ApiResponse(responseCode = "400", description = "서비스에서 발급되지 않은 리프레시 토큰입니다.", content = @Content(schema = @Schema(implementation = ErrorResponse.class))),
@ApiResponse(responseCode = "400", description = "서비스에서 발급되지 않거나 이미 사용된 리프레시 토큰입니다.", content = @Content(schema = @Schema(implementation = ErrorResponse.class))),
@ApiResponse(responseCode = "401", description = "기한이 만료된 리프레시 토큰입니다.", content = @Content(schema = @Schema(implementation = ErrorResponse.class)))
}
)
Expand Down

0 comments on commit 71c7350

Please sign in to comment.