- User URLs(用户相关) - Region URLs(版块相关) - Article URLs(文章相关) - FeaturedService URLs(特色服务相关) - Moderation URLs(版主管理相关) - Interaction URLs(交互功能相关) - 更新主 URL 配置,整合所有 API 端点 - 添加 JWT 认证端点
10 lines
266 B
Python
10 lines
266 B
Python
from django.urls import path, include
|
|
from rest_framework.routers import DefaultRouter
|
|
from .views import ArticleViewSet
|
|
|
|
router = DefaultRouter()
|
|
router.register(r'articles', ArticleViewSet, basename='article')
|
|
|
|
urlpatterns = [
|
|
path('', include(router.urls)),
|
|
] |