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-p910nd | |
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-p910nd')
-rw-r--r-- | applications/luci-app-p910nd/luasrc/controller/p910nd.lua | 15 | ||||
-rw-r--r-- | applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json | 14 |
2 files changed, 14 insertions, 15 deletions
diff --git a/applications/luci-app-p910nd/luasrc/controller/p910nd.lua b/applications/luci-app-p910nd/luasrc/controller/p910nd.lua deleted file mode 100644 index df47e9fd92..0000000000 --- a/applications/luci-app-p910nd/luasrc/controller/p910nd.lua +++ /dev/null @@ -1,15 +0,0 @@ --- Copyright 2008 Yanira <forum-2008@email.de> --- Licensed to the public under the Apache License 2.0. - -module("luci.controller.p910nd", package.seeall) - -function index() - if not nixio.fs.access("/etc/config/p910nd") then - return - end - - local page - - page = entry({"admin", "services", "p910nd"}, cbi("p910nd"), _("p910nd - Printer server"), 60) - page.dependent = true -end diff --git a/applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json b/applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json new file mode 100644 index 0000000000..33fcda6e49 --- /dev/null +++ b/applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json @@ -0,0 +1,14 @@ +{ + "admin/services/p910nd": { + "title": "p910nd - Printer server", + "order": 60, + "action": { + "type": "cbi", + "path": "p910nd", + "post": { "cbi.submit": true } + }, + "depends": { + "uci": { "p910nd": true } + } + } +} |