Skip to content

Commit

Permalink
refactor: #64 불필요한 어노테이션 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
dldmsql committed Nov 25, 2023
1 parent 63b3cb4 commit c626638
Showing 1 changed file with 4 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -151,15 +151,12 @@ public ApplicationResponse<UserProfileRes> getUserProfile(
@PutMapping("/profile")
@SecurityRequirement(name = "jwt-user-auth")
@Operation(summary = "인증된 사용자의 프로필 정보 수정", description = "인증된 사용자의 프로필 정보를 수정합니다.")
@ApiResponses({
@ApiResponse(
responseCode = "409",
description =
"""
@ApiResponse(
responseCode = "409",
description = """
(U0005)이미 등록된 닉네임입니다.<br>
""",
content = @Content(schema = @Schema())),
})
content = @Content(schema = @Schema()))
public ApplicationResponse<Boolean> updateUserProfile(
@Parameter(hidden = true) @AuthUser AuthenticatedUser authenticatedUser,
@RequestBody UserProfileUpdateReq userProfileUpdateReq) {
Expand Down

0 comments on commit c626638

Please sign in to comment.