format code
This commit is contained in:
@@ -1,10 +1,7 @@
|
||||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from django.conf.urls import url
|
||||
|
||||
from ..views.oj import (UserChangePasswordAPI, UserLoginAPI, UserRegisterAPI,
|
||||
ApplyResetPasswordAPI, ResetPasswordAPI)
|
||||
from ..views.oj import (ApplyResetPasswordAPI, ResetPasswordAPI,
|
||||
UserChangePasswordAPI, UserLoginAPI, UserRegisterAPI)
|
||||
|
||||
urlpatterns = [
|
||||
url(r"^login/?$", UserLoginAPI.as_view(), name="user_login_api"),
|
||||
|
||||
@@ -1,10 +1,7 @@
|
||||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from django.conf.urls import url
|
||||
|
||||
from ..views.user import (UserInfoAPI, UserProfileAPI, AvatarUploadAPI,
|
||||
SSOAPI, TwoFactorAuthAPI)
|
||||
from ..views.user import (SSOAPI, AvatarUploadAPI, TwoFactorAuthAPI,
|
||||
UserInfoAPI, UserProfileAPI)
|
||||
|
||||
urlpatterns = [
|
||||
url(r"^user/?$", UserInfoAPI.as_view(), name="user_info_api"),
|
||||
|
||||
Reference in New Issue
Block a user