|
@@ -11,8 +11,7 @@ from Controller import FeedBack, EquipmentOTA, EquipmentInfo, AdminManage, AppIn
|
|
AppSetController, \
|
|
AppSetController, \
|
|
ApplicationController, UserExController, CloudStorage, TestApi, UserBrandControllerV2, \
|
|
ApplicationController, UserExController, CloudStorage, TestApi, UserBrandControllerV2, \
|
|
StatisticsController, Alexa, FAQController, AppLogController, EquipmentVersionLimit, VoicePromptController, \
|
|
StatisticsController, Alexa, FAQController, AppLogController, EquipmentVersionLimit, VoicePromptController, \
|
|
- DeviceTypeController
|
|
|
|
-from Controller.DeviceTypeController import DeviceTypeView
|
|
|
|
|
|
+ CDKController, DeviceTypeController
|
|
from Controller.VoicePromptController import VoicePromptView
|
|
from Controller.VoicePromptController import VoicePromptView
|
|
|
|
|
|
urlpatterns = [
|
|
urlpatterns = [
|
|
@@ -180,7 +179,8 @@ urlpatterns = [
|
|
url(r'^oauth/unbunding', UserController.UnbundingWXView.as_view()),
|
|
url(r'^oauth/unbunding', UserController.UnbundingWXView.as_view()),
|
|
|
|
|
|
# 删除云存视频
|
|
# 删除云存视频
|
|
- path('cv/del', CloudVod.deleteVodHls),
|
|
|
|
|
|
+ # path('cv/del', CloudVod.deleteVodHls),
|
|
|
|
+ path('cv/del', CloudStorage.deleteVodHls),
|
|
url(r'^equipment/judge', EquipmentManager.judgeInterface),
|
|
url(r'^equipment/judge', EquipmentManager.judgeInterface),
|
|
|
|
|
|
# ap模式,新增设备表
|
|
# ap模式,新增设备表
|
|
@@ -251,6 +251,9 @@ urlpatterns = [
|
|
# 设备类型
|
|
# 设备类型
|
|
url(r'^deviceType/(?P<operation>.*)$', DeviceTypeController.DeviceTypeView.as_view()),
|
|
url(r'^deviceType/(?P<operation>.*)$', DeviceTypeController.DeviceTypeView.as_view()),
|
|
|
|
|
|
|
|
+ # cdk(激活码)
|
|
|
|
+ url(r'^cdk/(?P<operation>.*)$', CDKController.CDKView.as_view()),
|
|
|
|
+
|
|
# app 设备消息模板
|
|
# app 设备消息模板
|
|
# 路由加参数参考
|
|
# 路由加参数参考
|
|
# url(r'^(?P<path>.*)/(?P<UID>.*)/lls$', Test.Test.as_view(), name=u'gg'),
|
|
# url(r'^(?P<path>.*)/(?P<UID>.*)/lls$', Test.Test.as_view(), name=u'gg'),
|