|
@@ -1,6 +1,6 @@
|
|
|
from django.contrib import admin
|
|
|
from django.urls import include
|
|
|
-from django.urls import re_path
|
|
|
+from django.urls import re_path, path
|
|
|
|
|
|
from AdminController import UserManageController, RoleController, MenuController, TestServeController, \
|
|
|
ServeManagementController, LogManagementController, DeviceManagementController, VersionManagementController, \
|
|
@@ -266,6 +266,7 @@ urlpatterns = [
|
|
|
re_path(r'^api/algorithm/', include("Ansjer.server_urls.algorithm_shop_url")),
|
|
|
re_path(r'^kvs/', include("Ansjer.server_urls.kvs_url")),
|
|
|
re_path(r'^icloud/', include("Ansjer.server_urls.icloud_url")),
|
|
|
+ re_path(r'^roomumy/', include("Roomumy.server_urls.roomumy_url")),
|
|
|
re_path('appAccout/(?P<operation>.*)', AppAccountManagement.AppAccoutView.as_view()),
|
|
|
re_path('sensorGateway/(?P<operation>.*)', SensorGatewayController.SensorGateway.as_view()),
|
|
|
re_path(r'^api/surveys/(?P<operation>.*)$', CloudStorageController.CloudStorageView.as_view()),
|