2018-10-23 17:43:03 +08:00
|
|
|
-- Copyright 2018 lean <coolsnowwolf@gmail.com>
|
2018-10-23 17:34:06 +08:00
|
|
|
-- 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
|
|
|
|
|
|
|
|
|
|
local page
|
|
|
|
|
|
|
|
|
|
page = entry({"admin", "system", "webadmin"}, cbi("webadmin"), _("Web Admin"), 1)
|
|
|
|
|
page.leaf = true
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|