summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-nextdns/luasrc
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2020-02-05 16:51:19 +0100
committerJo-Philipp Wich <jo@mein.io>2020-02-05 16:52:58 +0100
commit625abbfdbe94dada023ebd8ea69778173d1a7351 (patch)
tree17151c468b7ea796f677e5cd9fd0d2b09f04905d /applications/luci-app-nextdns/luasrc
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-nextdns/luasrc')
-rw-r--r--applications/luci-app-nextdns/luasrc/controller/nextdns.lua14
1 files changed, 0 insertions, 14 deletions
diff --git a/applications/luci-app-nextdns/luasrc/controller/nextdns.lua b/applications/luci-app-nextdns/luasrc/controller/nextdns.lua
deleted file mode 100644
index bfa4887b03..0000000000
--- a/applications/luci-app-nextdns/luasrc/controller/nextdns.lua
+++ /dev/null
@@ -1,14 +0,0 @@
--- Copyright 2019 Olivier Poitrey (rs@nextdns.io)
--- This is free software, licensed under the Apache License, Version 2.0
-
-module("luci.controller.nextdns", package.seeall)
-
-function index()
- if not nixio.fs.access("/etc/config/nextdns") then
- return
- end
-
- entry({"admin", "services", "nextdns"}, firstchild(), _("NextDNS"), 60).dependent = false
- entry({"admin", "services", "nextdns", "overview"}, view("nextdns/overview"), _("Overview"), 10).leaf = true
- entry({"admin", "services", "nextdns", "log"}, view("nextdns/logread"), _("Logs"), 30).leaf = true
-end