-
Notifications
You must be signed in to change notification settings - Fork 2
fix: google oauth login #15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Walkthrough보안 설정에서 "/api/v1/login/**" 경로가 인증 없이 허용되는 경로에 추가되었습니다. core-domain 모듈의 빌드 설정에 JWT 관련 런타임 의존성이 추가되었습니다. UserRepository와 UserCoreRepository의 findUserByProviderAndEmail 메서드 반환 타입이 User에서 User?로 변경되어, 사용자를 찾지 못할 경우 null을 반환하도록 수정되었습니다. Changes
Sequence Diagram(s)sequenceDiagram
participant Client
participant SecurityConfig
Client->>SecurityConfig: /api/v1/login/** 요청
SecurityConfig-->>Client: 인증 없이 접근 허용
sequenceDiagram
participant Service
participant UserRepository
Service->>UserRepository: findUserByProviderAndEmail(providerType, email)
alt 사용자를 찾은 경우
UserRepository-->>Service: User 반환
else 사용자를 찾지 못한 경우
UserRepository-->>Service: null 반환
end
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (4)
⏰ Context from checks skipped due to timeout of 90000ms (1)
🔇 Additional comments (5)
✨ Finishing Touches
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
요약(개요)
작업 내용
집중해서 리뷰해야 하는 부분
기타 전달 사항 및 참고 자료(선택)
Summary by CodeRabbit
버그 수정
기타