From 8598e71bda9964bfe7ccfc44b45d4dbc4789c8b4 Mon Sep 17 00:00:00 2001 From: fxxian Date: Tue, 13 Feb 2024 09:03:36 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20app=20=E5=90=8D=E5=AD=97=E5=86=B2?= =?UTF-8?q?=E7=AA=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/accounts/api/mobile/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/accounts/api/mobile/urls.py b/apps/accounts/api/mobile/urls.py index 78d9b66..f6ed5f6 100644 --- a/apps/accounts/api/mobile/urls.py +++ b/apps/accounts/api/mobile/urls.py @@ -2,7 +2,7 @@ from django.urls import path from .views import UserLoginAPIView, UserDetailAPIView, UserLogoutAPIView -app_name = 'users-api' +app_name = 'users-mobile-api' urlpatterns = [ path('login/', UserLoginAPIView.as_view(), name='login'), path('logout/', UserLogoutAPIView.as_view(), name='logout'),