Browse Source

修改设备日志接口跳转问题

locky 2 years ago
parent
commit
ea9527e1cc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Ansjer/urls.py

+ 1 - 1
Ansjer/urls.py

@@ -200,7 +200,7 @@ urlpatterns = [
     re_path(r'^faq/(?P<operation>.*)$', FAQController.FAQView.as_view()),
     re_path(r'^ios/authsign', UserController.AppleAuthLogin.as_view()),
     re_path(r'^appLog/(?P<operation>.*)$', AppLogController.AppLogView.as_view()),
-    re_path(r'^deviceLog/(?P<operation>.*)$', DeviceLogController.DeviceLogView.as_view()),
+    re_path(r'deviceLog/(?P<operation>.*)$', DeviceLogController.DeviceLogView.as_view()),
     re_path(r'^local/(?P<operation>.*)$', UserController.LocalUserView.as_view()),
     re_path(r'^account/updateUserCountry', UserController.updateUserCountry),
     re_path(r'^equipmentVersionLimit/(?P<operation>.*)$', EquipmentVersionLimit.EquipmentVersionLimitView.as_view()),