mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-07-27 10:31:38 +08:00
9 lines
250 B
Lua
Executable File
9 lines
250 B
Lua
Executable File
module("luci.controller.guest-wifi", package.seeall)
|
|
|
|
function index()
|
|
if not nixio.fs.access("/etc/config/wireless") then
|
|
return
|
|
end
|
|
|
|
entry({"admin", "network", "guest-wifi"}, view("guest-wifi/wifi"), _("Guest WiFi"), 60)
|
|
end |