统一APIView的名字
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
from django.conf.urls import url
|
||||
|
||||
from ..views.oj import UserLoginAPIView, UserRegisterAPIView, UserChangePasswordAPIView
|
||||
from ..views.oj import UserLoginAPI, UserRegisterAPI, UserChangePasswordAPI
|
||||
|
||||
urlpatterns = [
|
||||
url(r'^login/$', UserLoginAPIView.as_view(), name="user_login_api"),
|
||||
url(r'^register/$', UserRegisterAPIView.as_view(), name="user_register_api"),
|
||||
url(r'^change_password/$', UserChangePasswordAPIView.as_view(), name="user_change_password_api")
|
||||
url(r'^login/$', UserLoginAPI.as_view(), name="user_login_api"),
|
||||
url(r'^register/$', UserRegisterAPI.as_view(), name="user_register_api"),
|
||||
url(r'^change_password/$', UserChangePasswordAPI.as_view(), name="user_change_password_api")
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user