添加企业设备模块
parent
57ce3d896e
commit
b7a3c0fb94
@ -0,0 +1 @@
|
||||
# -*- coding: utf-8 -*-
|
@ -0,0 +1,19 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from website.handlers.enterprise_device import handler
|
||||
|
||||
|
||||
handlers = [
|
||||
("/enterprise/device/classification/add", handler.DeviceClassificationAddHandler),
|
||||
("/enterprise/device/classification", handler.DeviceClassificationHandler),
|
||||
("/enterprise/device/classification/delete", handler.DeviceClassificationDeleteHandler),
|
||||
|
||||
("/enterprise/entity/nodes/device/add", handler.DeviceAddHandler),
|
||||
("/enterprise/entity/nodes/device/edit", handler.DeviceEditHandler),
|
||||
("/enterprise/entity/nodes/device/delete", handler.DeviceDeleteHandler),
|
||||
("/enterprise/entity/nodes/device/list", handler.DeviceListHandler),
|
||||
|
||||
]
|
||||
page_handlers = [
|
||||
|
||||
]
|
Loading…
Reference in New Issue