[REFACTOR] 인증 영역의 잔존 코드와 주입 컨벤션 정리 - #188
Merged
Merged
Conversation
poketopa
marked this pull request as ready for review
August 4, 2026 22:46
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
관련 이슈
Closes #187
변경 배경
인증 영역에 실행되지 않는 주석 코드와 테스트 디버그 출력이 남아 있었고,
AuthService만 프로젝트의 다른 서비스와 달리 생성자를 직접 선언하고 있었다.기존 인증 동작과 API 계약을 유지하면서 현재 프로젝트에서 반복적으로 사용하는 방식으로 정리
변경 내용
TokenManager제거AuthServiceTest의System.out.println두 곳 제거AuthService생성자 주입을@RequiredArgsConstructor로 통일(JwtTokenProvider, AdminRepository)유지 확인검증
AuthServiceTest통과backend-ci.yml테스트 통과