From 88b722e7415fec61a800777bef7f7f2a5f5e1bdd Mon Sep 17 00:00:00 2001 From: Rahulchourasiya Date: Wed, 15 Apr 2026 11:05:30 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9(backend)=20use=20path=20for=20redo?= =?UTF-8?q?c=20url=20matching?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/backend/meet/urls.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/meet/urls.py b/src/backend/meet/urls.py index 3fb00dde..5f8b71a4 100644 --- a/src/backend/meet/urls.py +++ b/src/backend/meet/urls.py @@ -4,7 +4,7 @@ from django.conf import settings from django.conf.urls.static import static from django.contrib import admin from django.contrib.staticfiles.urls import staticfiles_urlpatterns -from django.urls import include, path, re_path +from django.urls import include, path from drf_spectacular.views import ( SpectacularJSONAPIView, @@ -41,7 +41,7 @@ if settings.USE_SWAGGER or settings.DEBUG: SpectacularSwaggerView.as_view(url_name="client-api-schema"), name="swagger-ui-schema", ), - re_path( + path( f"{settings.API_VERSION}/redoc/", SpectacularRedocView.as_view(url_name="client-api-schema"), name="redoc-schema",