Open
Conversation
- chat.ts: /admin/chat/* → /admin/v2/chat/* with response adapters
- messaging.ts: aiChat endpoints → /admin/v2/ai-chat/* with path params
- moderation.ts: reports endpoints → /admin/v2/reports/* with adapter
All function signatures and interfaces unchanged for backward
compatibility. V2 response shape ({ data }) unwrapped and mapped
to existing UI-expected shapes.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
- dashboard.ts: add dashboardV2 export (summary, revenue, signups, stats overview, retention) alongside existing v1 stats - moderation.ts: userReview endpoints → /admin/v2/profile-review/* - users.ts: hybrid v1/v2 (list/detail/rank → v2, operations → v1) - ai-chat-v2.tsx: fix sessionsData.sessions → items, session lookup Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 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
/admin/chat/*→/admin/v2/chat/*(rooms, messages path param, stats, CSV export)/admin/v2/ai-chat/*(sessions, messages path param)/admin/v2/reports/*(list, detail, status update)Approach
{ data }포맷을 v1 shape로 변환하는 adapter 패턴 적용// V2 ADAPTER주석으로 변경 포인트 표시userReview,profileImages,pushNotifications,momentQuestions는 v1 유지Dependencies
Remaining work (별도 PR)
dashboard.ts: v2 consolidated endpoint 전환 (UI 컴포넌트 변경 필요)moderation.tsuserReview: 백엔드 스키마 버그 수정 후 연결users.ts: 하이브리드 전환 (조회 v2, 운영 액션 v1 유지)Test plan
🤖 Generated with Claude Code