Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openwrt/luci.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2020-02-05 18:51:19 +0300
committerJo-Philipp Wich <jo@mein.io>2020-02-05 18:52:58 +0300
commit625abbfdbe94dada023ebd8ea69778173d1a7351 (patch)
tree17151c468b7ea796f677e5cd9fd0d2b09f04905d /applications/luci-app-pagekitec
parent535d4cf8b914b13ccae6d130ed865235a66b4662 (diff)
treewide: convert simple Lua controllers to declarative JSON
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'applications/luci-app-pagekitec')
-rw-r--r--applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua8
-rw-r--r--applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json10
2 files changed, 10 insertions, 8 deletions
diff --git a/applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua b/applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua
deleted file mode 100644
index 938356be64..0000000000
--- a/applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua
+++ /dev/null
@@ -1,8 +0,0 @@
--- Copyright 2018 Karl Palsson <karlp@tweak.net.au>
--- Licensed to the public under the Apache License 2.0.
-
-module("luci.controller.pagekitec", package.seeall)
-
-function index()
- entry({"admin", "services", "pagekitec"}, cbi("pagekitec"), _("PageKite"))
-end
diff --git a/applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json b/applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json
new file mode 100644
index 0000000000..54af904c51
--- /dev/null
+++ b/applications/luci-app-pagekitec/root/usr/share/luci/menu.d/luci-app-pagekitec.json
@@ -0,0 +1,10 @@
+{
+ "admin/services/pagekitec": {
+ "title": "PageKite",
+ "action": {
+ "type": "cbi",
+ "path": "pagekitec",
+ "post": { "cbi.submit": true }
+ }
+ }
+}