Skip to content

Commit

Permalink
[#3] 회원 컨트롤러 Bearer Scheme 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
jun108059 committed Oct 14, 2021
1 parent d71c3a7 commit 3aea62d
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ public class MemberController {

@Operation(summary = "✅ 단일 회원 정보 조회 API",
description = "회원의 상세 정보를 조회해요.",
security = @SecurityRequirement(name = "bearerAuth"),
responses = {
@ApiResponse(
responseCode = "200", description = "[Ok] Get One Member Info",
Expand All @@ -38,6 +39,7 @@ public ResponseEntity<Member> getOneMember(

@Operation(summary = "✅ 닉네임 수정 API",
description = "회원의 닉네임을 수정해요.",
security = @SecurityRequirement(name = "bearerAuth"),
responses = {
@ApiResponse(
responseCode = "200", description = "[Ok] Update Member NickName",
Expand Down

0 comments on commit 3aea62d

Please sign in to comment.