Skip to content

Commit

Permalink
♻️refactor: swaggerconfig 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
xxoznge committed Jun 6, 2024
1 parent 94c4d88 commit 9bceda1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ public OpenAPI getOpenApi() {

private Info getSwaggerInfo() {
License license = new License();
license.setName("{Application}");
license.setName("Ddabongdotchi");

return new Info()
.title("{Application} API Document")
.description("This is {Application}'s API document.")
.title("Ddabongdotchi API Document")
.description("This is Ddabongdotchi's API document.")
.version("v0.0.1")
.license(license);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,5 +108,4 @@ public ApiResponse<UserUpdateResponse> updateMyUser(
public ApiResponse<List<MyCardGetResponse>> getMyCards(@UserResolver User user) {
return ApiResponse.onSuccess(UserQueryService.getMyCard(user));
}

}

0 comments on commit 9bceda1

Please sign in to comment.