luci/applications/luci-app-dawn/luasrc/controller/dawn.lua
Nick Hainke 4a78122246 luci-app-dawn: remove page for steering options
The luci-app-dawn is blocking the PR to be merged:
https://github.com/openwrt/packages/pull/16299

Remove the configuration page and set appropriate standard values.

Signed-off-by: Nick Hainke <vincent@systemli.org>
2021-10-09 10:05:02 +02:00

10 lines
406 B
Lua

module("luci.controller.dawn", package.seeall)
function index()
local e = entry({ "admin", "dawn" }, firstchild(), "DAWN", 60)
e.dependent = false
e.acl_depends = { "luci-app-dawn" }
entry({ "admin", "dawn", "view_network" }, cbi("dawn/dawn_network"), "View Network Overview", 1)
entry({ "admin", "dawn", "view_hearing_map" }, cbi("dawn/dawn_hearing_map"), "View Hearing Map", 2)
end