op-packages/luci-app-webadmin/luasrc/controller/webadmin.lua
github-actions[bot] 5eb416f3e2 🐶 Sync 2026-04-18 02:04:09
2026-04-18 02:04:09 +08:00

13 lines
332 B
Lua

-- Copyright 2018 lean <coolsnowwolf@gmail.com>
-- Licensed to the public under the Apache License 2.0.
module("luci.controller.webadmin", package.seeall)
function index()
if not nixio.fs.access("/etc/config/uhttpd") then
return
end
entry({"admin", "system", "webadmin"}, cbi("webadmin"), _("Web Admin"), 1).leaf = true
end