Conversation
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
|
Caution Review failedThe pull request is closed. Walkthrough신규 사용자 API 클라이언트(getAlias, postNickname, postSignup) 추가, 로그인 페이지에 카카오/구글 OAuth 리다이렉트 핸들러 도입, 회원가입 닉네임 검증/에러 표시 및 장르(별칭) 선택 후 가입 호출 흐름 구현, 완료 페이지에서 상태 기반 데이터 표시와 라우팅 보정, 스타일에 에러 상태 프롭 추가. Changes
Sequence Diagram(s)sequenceDiagram
participant U as User
participant L as Login Page
participant IdP as OAuth Provider
participant BE as Backend
U->>L: Click Kakao/Google
L->>IdP: Redirect to /oauth2/authorization/{provider}
IdP-->>BE: Callback with code
BE-->>U: Set auth cookie / redirect to app
sequenceDiagram
participant U as User
participant N as SignupNickname
participant G as SignupGenre
participant API as Backend API
participant C as apiClient
U->>N: Enter nickname
N->>C: POST /users/nickname
C->>API: Verify nickname
API-->>C: isVerified
C-->>N: Result
N-->>G: navigate(state: { nickname })
U->>G: Select alias
G->>G: Read token from cookie
G->>C: Set Authorization header
G->>C: POST /users/signup { aliasName, nickName }
C->>API: Signup
API-->>C: success/userId
C-->>G: Result
G-->>U: navigate('/signupdone', state: { aliasName, nickName })
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~20–25 minutes Possibly related issues
Possibly related PRs
Suggested labels
Suggested reviewers
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (8)
✨ Finishing Touches
🧪 Generate unit tests
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
This was referenced Aug 12, 2025
Merged
Merged
Merged
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.
#️⃣연관된 이슈
#74 [API] Users API 연동
#73 [API] Auth API 연동
📝작업 내용
<소셜로그인 로직>
💬리뷰 요구사항
현재 구현중인데 확인해야할 부분이 있어 머지 먼저 하겠습니다.
Summary by CodeRabbit