Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public ResponseEntity<ApiResponse<String>> updateProfileImage(
}

@Operation(summary = "회원 탈퇴", description = "재인증 토큰(X-Reauth-Token) 필요. 기본은 소프트 삭제")
@DeleteMapping
@DeleteMapping("/delete")
public ResponseEntity<ApiResponse<SimpleMessageResponse>> deleteMe(
@AuthenticationPrincipal JwtUserPrincipal principal,
@RequestHeader("X-Reauth-Token") String reauthToken,
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/application-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ logging:
com.indayvidual: INFO

kakao:
api-base: https://kapi.kakao.com
oauth:
client-id: ${KAKAO_REST_API_KEY}
client-secret: ${KAKAO_CLIENT_SECRET:} # 없으면 빈 값
Expand Down