Signed-off-by: Carey Sonsino <careys@edgewaterwireless.com> Signed-off-by: Carey Sonsino <csonsino@gmail.com>
13 lines
343 B
Lua
13 lines
343 B
Lua
-- Copyright 2019 EWSI
|
|
-- Licensed to the public under the Apache License 2.0.
|
|
|
|
module("luci.controller.dcwapd", package.seeall)
|
|
|
|
function index()
|
|
if not nixio.fs.access("/etc/config/dcwapd") then
|
|
return
|
|
end
|
|
local page
|
|
page = entry({"admin", "network", "dcwapd"}, cbi("dcwapd/dcwapd"), _("Dual Channel WiFi"))
|
|
page.dependent = true
|
|
end
|