luci/applications/luci-app-dcwapd/luasrc/controller/dcwapd.lua
Carey Sonsino 838f1d8ca2 luci-app-dcwapd: Add Dual Channel Wi-Fi AP Daemon Pages
Signed-off-by: Carey Sonsino <careys@edgewaterwireless.com>
Signed-off-by: Carey Sonsino <csonsino@gmail.com>
2019-10-08 14:10:52 +00:00

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