2021-04-19 16:52:04 +08:00

10 lines
254 B
Lua

module("luci.controller.guest-wifi", package.seeall)
function index()
if not nixio.fs.access("/etc/config/guest-wifi") then
return
end
entry({"admin", "network", "guest-wifi"}, cbi("guest-wifi"), translate("Guest-wifi"), 19).dependent = true
end