mirror of
https://github.com/JamesonHuang/OpenWrt_Luci_Lua.git
synced 2024-11-24 06:10:11 +00:00
11 lines
285 B
Lua
11 lines
285 B
Lua
module("luci.controller.service.index", package.seeall)
|
|
function index()
|
|
local page = node("service")
|
|
page.target = firstchild()
|
|
page.title = _("")
|
|
page.order = nil
|
|
page.sysauth = "admin"
|
|
page.sysauth_authenticator = "jsonauth"
|
|
page.index = true
|
|
end
|