From 7fc87644d6ec99eac62d9af5040421902cf8ff2e Mon Sep 17 00:00:00 2001 From: Bai Date: Mon, 25 May 2026 19:20:43 +0800 Subject: [PATCH] feat: modify cert login url --- apps/authentication/backends/cert/view_urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/authentication/backends/cert/view_urls.py b/apps/authentication/backends/cert/view_urls.py index 2faaadf47..2a3c8edcc 100644 --- a/apps/authentication/backends/cert/view_urls.py +++ b/apps/authentication/backends/cert/view_urls.py @@ -3,5 +3,5 @@ from . import views from django.urls import path urlpatterns = [ - path('cert/login/', views.CertLoginView.as_view(), name='cert-login') + path('login/', views.CertLoginView.as_view(), name='cert-login') ]