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>
10 lines
406 B
Lua
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
|