Skip to content

Commit

Permalink
chore: 초대코드 검증 API Swagger 예외 추가 (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
SunwoongH committed Jan 16, 2024
1 parent 297bf5b commit 72e9fff
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion doorip-api/src/main/java/org/doorip/trip/api/TripApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ ResponseEntity<BaseResponse<?>> getTrips(@Parameter(hidden = true)
@RequestParam final String progress);

@Operation(
summary = "초대 코드 검증 API",
summary = "초대코드 검증 API",
responses = {
@ApiResponse(
responseCode = "200",
Expand All @@ -114,6 +114,10 @@ ResponseEntity<BaseResponse<?>> getTrips(@Parameter(hidden = true)
responseCode = "400",
description = "잘못된 요청입니다.",
content = @Content),
@ApiResponse(
responseCode = "400",
description = "여행에 입장할 수 있는 최대 인원은 6명입니다.",
content = @Content),
@ApiResponse(
responseCode = "401",
description = "액세스 토큰의 형식이 올바르지 않습니다. Bearer 타입을 확인해 주세요.",
Expand Down

0 comments on commit 72e9fff

Please sign in to comment.