- backend apps/stats: GET /api/v1/admin/stats?from&to → totals / byUser / byDay. ChatMessage(assistant) 집계만, is_superuser 아니면 403. 테스트 3개 - frontend features/admin: 요약 카드 4개(요청·토큰·비용·평균 응답), 일별 토큰 막대(div), 사용자별 표, 기간 프리셋(오늘/7/30/90일). 헤더에 ADMIN 만 아이콘. 테스트 2개 Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
8 lines
128 B
Python
8 lines
128 B
Python
from django.urls import path
|
|
|
|
from .views import AdminStatsView
|
|
|
|
urlpatterns = [
|
|
path("stats", AdminStatsView.as_view()),
|
|
]
|