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-tinyproxy/root/usr/share | |
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-tinyproxy/root/usr/share')
-rw-r--r-- | applications/luci-app-tinyproxy/root/usr/share/luci/menu.d/luci-app-tinyproxy.json | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/applications/luci-app-tinyproxy/root/usr/share/luci/menu.d/luci-app-tinyproxy.json b/applications/luci-app-tinyproxy/root/usr/share/luci/menu.d/luci-app-tinyproxy.json new file mode 100644 index 000000000..e89c140e3 --- /dev/null +++ b/applications/luci-app-tinyproxy/root/usr/share/luci/menu.d/luci-app-tinyproxy.json @@ -0,0 +1,30 @@ +{ + "admin/services/tinyproxy": { + "title": "Tinyproxy", + "action": { + "type": "firstchild" + }, + "depends": { + "uci": { "tinyproxy": true } + } + }, + + "admin/services/tinyproxy/status": { + "title": "Status", + "order": 1, + "action": { + "type": "template", + "path": "tinyproxy_status" + } + }, + + "admin/services/tinyproxy/config": { + "title": "Configuration", + "order": 2, + "action": { + "type": "cbi", + "path": "tinyproxy", + "post": { "cbi.submit": true } + } + } +} |