diff options
author | Jo-Philipp Wich <jo@mein.io> | 2020-04-19 17:14:58 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2020-04-19 17:17:26 +0200 |
commit | 74da73b012a7ac271d683f11d98de170215ae661 (patch) | |
tree | eb0f31ad31b09b33b8166fdcaec9c57b86f01a47 /applications/luci-app-olsr | |
parent | 760763a7b5da42860c6c2d63478859bb02fa9104 (diff) |
applications: add ACL dependency annotations to legacy controllers
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'applications/luci-app-olsr')
-rw-r--r-- | applications/luci-app-olsr/luasrc/controller/olsr.lua | 2 | ||||
-rw-r--r-- | applications/luci-app-olsr/luasrc/controller/olsr4.lua | 1 | ||||
-rw-r--r-- | applications/luci-app-olsr/luasrc/controller/olsr6.lua | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/applications/luci-app-olsr/luasrc/controller/olsr.lua b/applications/luci-app-olsr/luasrc/controller/olsr.lua index 22d9a01f1..41897092f 100644 --- a/applications/luci-app-olsr/luasrc/controller/olsr.lua +++ b/applications/luci-app-olsr/luasrc/controller/olsr.lua @@ -26,6 +26,7 @@ function index() page.target = template("status-olsr/overview") page.title = _("OLSR") page.subindex = true + page.acl_depends = { "luci-app-olsr" } local page = node("admin", "status", "olsr", "json") page.target = call("action_json") @@ -74,7 +75,6 @@ function index() {"admin", "services", "olsrd", "display"}, cbi("olsr/olsrddisplay"), _("Display") ) - end function action_json() diff --git a/applications/luci-app-olsr/luasrc/controller/olsr4.lua b/applications/luci-app-olsr/luasrc/controller/olsr4.lua index 31a3101bc..5c6d887cb 100644 --- a/applications/luci-app-olsr/luasrc/controller/olsr4.lua +++ b/applications/luci-app-olsr/luasrc/controller/olsr4.lua @@ -13,6 +13,7 @@ function index() cbi("olsr/olsrd"), "OLSR IPv4" ) ol.subindex = true + ol.acl_depends = { "luci-app-olsr" } entry( {"admin", "services", "olsrd", "iface"}, diff --git a/applications/luci-app-olsr/luasrc/controller/olsr6.lua b/applications/luci-app-olsr/luasrc/controller/olsr6.lua index 9fbaa0427..d09ad3398 100644 --- a/applications/luci-app-olsr/luasrc/controller/olsr6.lua +++ b/applications/luci-app-olsr/luasrc/controller/olsr6.lua @@ -13,6 +13,7 @@ function index() cbi("olsr/olsrd6"), "OLSR IPv6" ) ol.subindex = true + ol.acl_depends = { "luci-app-olsr" } entry( {"admin", "services", "olsrd6", "iface"}, |