|
@@ -14,7 +14,6 @@ urlpatterns = [
|
|
url(r'^account/authcode$', UserController.authCodeView.as_view()),
|
|
url(r'^account/authcode$', UserController.authCodeView.as_view()),
|
|
url(r'^account/register$', UserController.registerView.as_view()),
|
|
url(r'^account/register$', UserController.registerView.as_view()),
|
|
url(r'^account/login$', UserController.v2LoginView.as_view()),
|
|
url(r'^account/login$', UserController.v2LoginView.as_view()),
|
|
- url(r'^account/dc_login$', UserController.v3LoginView.as_view()),
|
|
|
|
url(r'^account/logout$', UserController.LogoutView.as_view()),
|
|
url(r'^account/logout$', UserController.LogoutView.as_view()),
|
|
url(r'^account/changePwd$', UserController.ChangePwdView.as_view()),
|
|
url(r'^account/changePwd$', UserController.ChangePwdView.as_view()),
|
|
url(r'^account/forget$', UserController.ForgetPwdView.as_view()),
|
|
url(r'^account/forget$', UserController.ForgetPwdView.as_view()),
|
|
@@ -115,6 +114,7 @@ urlpatterns = [
|
|
# 重置密码验证码校验
|
|
# 重置密码验证码校验
|
|
url(r'^v2/authcode/verify$', UserController.verifyAuthcode.as_view()),
|
|
url(r'^v2/authcode/verify$', UserController.verifyAuthcode.as_view()),
|
|
url(r'^v2/account/logout$', UserController.V2LogoutView.as_view()),
|
|
url(r'^v2/account/logout$', UserController.V2LogoutView.as_view()),
|
|
|
|
+ url(r'^v2/account/dc_login$', UserController.v3LoginView.as_view()),
|
|
# 新增
|
|
# 新增
|
|
url(r'^detect/detect_group_push$',DetectController.NotificationView.detect_group_push),
|
|
url(r'^detect/detect_group_push$',DetectController.NotificationView.detect_group_push),
|
|
url(r'^detect/add$', DetectController.PushNotificationView.as_view()),
|
|
url(r'^detect/add$', DetectController.PushNotificationView.as_view()),
|