diff options
Diffstat (limited to 'applications/luci-app-dump1090')
-rw-r--r-- | applications/luci-app-dump1090/luasrc/controller/dump1090.lua | 14 | ||||
-rw-r--r-- | applications/luci-app-dump1090/root/usr/share/luci/menu.d/luci-app-dump1090.json | 13 |
2 files changed, 13 insertions, 14 deletions
diff --git a/applications/luci-app-dump1090/luasrc/controller/dump1090.lua b/applications/luci-app-dump1090/luasrc/controller/dump1090.lua deleted file mode 100644 index bc2b36dc32..0000000000 --- a/applications/luci-app-dump1090/luasrc/controller/dump1090.lua +++ /dev/null @@ -1,14 +0,0 @@ --- Copyright 2014 Álvaro Fernández Rojas <noltari@gmail.com> --- Licensed to the public under the Apache License 2.0. - -module("luci.controller.dump1090", package.seeall) - -function index() - if not nixio.fs.access("/etc/config/dump1090") then - return - end - - local page = entry({"admin", "services", "dump1090"}, cbi("dump1090"), _("dump1090")) - page.dependent = true - -end diff --git a/applications/luci-app-dump1090/root/usr/share/luci/menu.d/luci-app-dump1090.json b/applications/luci-app-dump1090/root/usr/share/luci/menu.d/luci-app-dump1090.json new file mode 100644 index 0000000000..4e68dde1c5 --- /dev/null +++ b/applications/luci-app-dump1090/root/usr/share/luci/menu.d/luci-app-dump1090.json @@ -0,0 +1,13 @@ +{ + "admin/services/dump1090": { + "title": "dump1090", + "action": { + "type": "cbi", + "path": "dump1090", + "post": { "cbi.submit": true } + }, + "depends": { + "uci": { "dump1090": true } + } + } +} |