Merge pull request #3125 from ysc3839/cifsd
[project/luci.git] / applications / luci-app-dcwapd / luasrc / controller / dcwapd.lua
1 -- Copyright 2019 EWSI
2 -- Licensed to the public under the Apache License 2.0.
3
4 module("luci.controller.dcwapd", package.seeall)
5
6 function index()
7 if not nixio.fs.access("/etc/config/dcwapd") then
8 return
9 end
10 local page
11 page = entry({"admin", "network", "dcwapd"}, cbi("dcwapd/dcwapd"), _("Dual Channel WiFi"))
12 page.dependent = true
13 end