From 168c3df32f02a5639d0444c1e2a8d376b4bc49a5 Mon Sep 17 00:00:00 2001 From: Mike0001-droid Date: Fri, 31 May 2024 15:58:15 +0500 Subject: [PATCH] =?UTF-8?q?=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=B8?= =?UTF-8?q?=D0=BB=20=D0=BE=D1=88=D0=B8=D0=B1=D0=BA=D1=83=20=D0=B2=20=D1=83?= =?UTF-8?q?=D1=80=D0=BB=D0=B0=D1=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/proj/conf/urls.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/proj/conf/urls.py b/server/proj/conf/urls.py index 7669fc8..f780dcd 100644 --- a/server/proj/conf/urls.py +++ b/server/proj/conf/urls.py @@ -1,5 +1,5 @@ from django.contrib import admin -from rest_framework.documentation import include_docs_urls +#from rest_framework.documentation import include_docs_urls from django.urls import path, include # from api.views import AzuraNowPlayingWebhookView from loginApi.views import login, register @@ -27,8 +27,8 @@ urlpatterns = [ path('api/token/', TokenObtainPairView.as_view(), name='token_obtain_pair'), path('api/token/refresh/', TokenRefreshView.as_view(), name='token_refresh'), path('api/token/verify/', TokenVerifyView.as_view(), name='token_verify'), - path('api/', include_docs_urls(title='API docs')), - #path('api/', include(router.urls)), + #path('api/', include_docs_urls(title='API docs')), + path('api/', include(router.urls)), path('api-auth/', include('rest_framework.urls', namespace='rest_framework')), # path('webhook/', AzuraNowPlayingWebhookView.as_view(), name='webhook-receiver'),