From 625abbfdbe94dada023ebd8ea69778173d1a7351 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Wed, 5 Feb 2020 16:51:19 +0100 Subject: treewide: convert simple Lua controllers to declarative JSON Signed-off-by: Jo-Philipp Wich --- .../root/usr/share/luci/menu.d/luci-app-nut.json | 54 ++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json (limited to 'applications/luci-app-nut/root/usr/share') diff --git a/applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json b/applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json new file mode 100644 index 0000000000..f2cd6e7853 --- /dev/null +++ b/applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json @@ -0,0 +1,54 @@ +{ + "admin/services/nut": { + "title": "Network UPS Tools", + "action": { + "type": "firstchild" + }, + "depends": { + "uci": [ + { "nut_server": true }, + { "nut_monitor": true }, + { "nut_cgi": true } + ] + } + }, + + "admin/services/nut/server": { + "title": "Network UPS Tools (Server)", + "order": 1, + "action": { + "type": "cbi", + "path": "nut_server", + "post": { "cbi.submit": true } + }, + "depends": { + "uci": { "nut_server": true } + } + }, + + "admin/services/nut/monitor": { + "title": "Network UPS Tools (Monitor)", + "order": 2, + "action": { + "type": "cbi", + "path": "nut_monitor", + "post": { "cbi.submit": true } + }, + "depends": { + "uci": { "nut_monitor": true } + } + }, + + "admin/services/nut/cgi": { + "title": "Network UPS Tools (CGI)", + "order": 3, + "action": { + "type": "cbi", + "path": "nut_cgi", + "post": { "cbi.submit": true } + }, + "depends": { + "uci": { "nut_cgi": true } + } + } +} -- cgit v1.2.3