small-package/luci-app-guest-wifi/luasrc/controller/guest-wifi.lua

9 lines
233 B
Lua
Raw Normal View History

2021-09-24 23:37:27 +08:00
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"), 16)
end