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