diff options
Diffstat (limited to 'applications/luci-app-nut/root')
-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 000000000..f2cd6e785 --- /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 } + } + } +} |