diff options
author | Jo-Philipp Wich <jo@mein.io> | 2020-02-05 16:51:19 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2020-02-05 16:52:58 +0100 |
commit | 625abbfdbe94dada023ebd8ea69778173d1a7351 (patch) | |
tree | 17151c468b7ea796f677e5cd9fd0d2b09f04905d /applications/luci-app-nut/root/usr | |
parent | 535d4cf8b914b13ccae6d130ed865235a66b4662 (diff) |
treewide: convert simple Lua controllers to declarative JSON
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'applications/luci-app-nut/root/usr')
-rw-r--r-- | applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json | 54 |
1 files changed, 54 insertions, 0 deletions
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 } + } + } +} |