mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-06-18 15:25:29 +08:00
10 lines
254 B
Lua
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
|