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 @@ -21,7 +21,6 @@
@Service
@RequiredArgsConstructor
public class EmailVerificationService {

private final EmailVerificationRepository verificationRepository;
private final EmailSessionRepository sessionRepository;
private final MemberRepository memberRepository;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ public ResponseEntity<ApiResponseWrapper<Boolean>> isUniqueNickname(@RequestPara
return ResponseEntity.ok(ApiResponseWrapper.success(HttpStatus.OK, response));
}

@SessionCheck
@PatchMapping("/password")
public ResponseEntity<ApiResponseWrapper<Void>> updatePassword(
@RequestBody PasswordUpdateRequest request,
Expand Down