소스 검색

登录接口加$

locky 2 년 전
부모
커밋
c983505d99
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Ansjer/urls.py

+ 1 - 1
Ansjer/urls.py

@@ -120,7 +120,7 @@ urlpatterns = [
     re_path('v2/authcode/verify', UserController.verifyAuthcode.as_view()),
     re_path('v2/account/logout', UserController.V2LogoutView.as_view()),
     re_path('v2/account/login', UserController.v3LoginView.as_view()),
-    re_path('v3/account/login', UserController.v3LoginView.as_view()),
+    re_path('v3/account/login$', UserController.v3LoginView.as_view()),
     re_path('account/oneClickLogin', UserController.oneClickLoginView.as_view()),
     re_path('account/createPwd', UserController.createPwd.as_view()),
     re_path('account/delete', UserController.deleteAccount),