feat(reaction): 后台表情统计接口

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-08-06 01:45:33 -06:00
parent 203a9a48d0
commit 700488a36b
3 changed files with 47 additions and 0 deletions

7
reaction/urls/admin.py Normal file
View File

@@ -0,0 +1,7 @@
from django.urls import path
from ..views.admin import ReactionStatsAPI
urlpatterns = [
path("reaction", ReactionStatsAPI.as_view()),
]