refactor(api): 중복 users/me API 라우트 제거 - #89
Merged
Conversation
/api/users/me(복수)와 /api/user/me(단수)가 동일한 역할로 중복 존재하던 문제를 해결한다. 기능이 완성된 /api/user/me(단수)를 유지하고, 최소 구현만 남아있던 /api/users/me(복수)를 삭제한다. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Repository UI (base), Organization UI (inherited) Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (2)
💤 Files with no reviewable changes (1)
📝 WalkthroughWalkthrough
Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Poem
🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Comment |
evenif99
added a commit
that referenced
this pull request
Jun 20, 2026
/api/users/me(복수) 라우트가 dev에서 삭제(#89)되었으므로 해당 파일의 force-dynamic 추가 변경을 드롭하여 충돌 해결 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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.
Summary
/api/users/me(복수)와/api/user/me(단수)가 동일한 역할로 중복 존재하던 문제 제거/api/user/me(단수) 유지, 최소 구현(GET, 3개 필드)만 남아있던/api/users/me(복수) 삭제src/app/api/users/me/route.ts,src/app/api/users/.gitkeep배경
두 라우트의 역할 비교:
/api/user/me(단수)/api/users/me(복수)도메인 클라이언트(
src/domains/user/api.ts)도 단수 경로(/api/user/me)를 사용 중이므로 변경 영향 없음.Test plan
/api/users/me경로 접근 시 404 반환 확인🤖 Generated with Claude Code
Summary by CodeRabbit
릴리스 노트