Skip to content

Commit

Permalink
fix: swagger mypage 태그로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Moveuk committed Feb 1, 2025
1 parent 7da243b commit 9120a60
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@

public interface MyPageControllerSpecification {

@Tag(name = "${swagger.tag.user}")
@Tag(name = "${swagger.tag.my-page}")
@Operation(summary = "마이페이지 조회 - 인증 필수",
description = "마이페이지 조회",
security = {@SecurityRequirement(name = "session-token")})
ApiResponse<MyPageInfoResponse> getMyPageInfo(
@AuthenticationPrincipal UserPrincipal principal);

@Tag(name = "${swagger.tag.user}")
@Tag(name = "${swagger.tag.my-page}")
@Operation(summary = "마이페이지 운영중인 스터디 목록 조회 - 인증 필수",
description = "마이페이지 운영중인 스터디 목록을 조회해옵니다.",
security = {@SecurityRequirement(name = "session-token")})
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/application-swagger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ swagger:
proof: '11. 회차 인증'
evaluation: '12. 평가'
block: '13. 차단'
my-page: '14. 마이페이지'

0 comments on commit 9120a60

Please sign in to comment.