Skip to content

Commit

Permalink
[refactor] #276 - Swagger의 use-fqn 설정을 false로 변경 (#277)
Browse files Browse the repository at this point in the history
* [#276] refactor: use-fqn을 false로 변경

* [#276] chore(TicketRefundRequest): 불필요한 static 키워드 삭제
  • Loading branch information
hoonyworld authored Dec 2, 2024
1 parent 8a1289c commit 8e81a1f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public static TicketRefundRequest of(Long performanceId, List<Booking> bookingLi
return new TicketRefundRequest(performanceId, bookingList);
}

public static record Booking(
public record Booking(
long bookingId
) {
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/application-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,4 @@ app:
url: ${DEV_SERVER_URL}

springdoc:
use-fqn: true
use-fqn: false
2 changes: 1 addition & 1 deletion src/main/resources/application-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,4 @@ app:
url: ${PROD_SERVER_URL}

springdoc:
use-fqn: true
use-fqn: false

0 comments on commit 8e81a1f

Please sign in to comment.