feat: 移除Swagger/Redoc; 首页按区域分块显示设备清单

This commit is contained in:
2026-05-19 14:57:53 +08:00
parent 44d5b08a69
commit 584ef677c8
5 changed files with 172 additions and 253 deletions

View File

@@ -30,7 +30,6 @@ INSTALLED_APPS = [
'rest_framework',
'rest_framework_simplejwt',
'django_filters',
'drf_yasg',
'device_management',
]
@@ -119,17 +118,6 @@ REST_FRAMEWORK = {
'PAGE_SIZE': 20,
}
SWAGGER_SETTINGS = {
'SECURITY_DEFINITIONS': {
'Bearer': {
'type': 'apiKey',
'name': 'Authorization',
'in': 'header'
}
},
'USE_SESSION_AUTH': True,
}
from datetime import timedelta
SIMPLE_JWT = {

View File

@@ -6,10 +6,6 @@ from django.urls import path, include
from django.conf import settings
from django.conf.urls.static import static
from rest_framework import permissions
from drf_yasg.views import get_schema_view
from drf_yasg import openapi
from rest_framework_simplejwt.views import (
TokenObtainPairView,
TokenRefreshView,
@@ -17,19 +13,6 @@ from rest_framework_simplejwt.views import (
from device_management.views import home_page
schema_view = get_schema_view(
openapi.Info(
title="视频主设备管理系统 API",
default_version='v1',
description="视频编码器、解码器、矩阵、NVR等设备管理系统API文档",
terms_of_service="https://www.example.com/terms/",
contact=openapi.Contact(email="contact@example.com"),
license=openapi.License(name="BSD License"),
),
public=True,
permission_classes=(permissions.AllowAny,),
)
urlpatterns = [
path('', home_page, name='home'),
path('admin/', admin.site.urls),
@@ -37,7 +20,4 @@ urlpatterns = [
path('api/token/', TokenObtainPairView.as_view(), name='token_obtain_pair'),
path('api/token/refresh/', TokenRefreshView.as_view(), name='token_refresh'),
path('api-auth/', include('rest_framework.urls')),
path('swagger<format>/', schema_view.without_ui(cache_timeout=0), name='schema-json'),
path('swagger/', schema_view.with_ui('swagger', cache_timeout=0), name='schema-swagger-ui'),
path('redoc/', schema_view.with_ui('redoc', cache_timeout=0), name='schema-redoc'),
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)