You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
450 B
Lua
16 lines
450 B
Lua
1 year ago
|
|
||
|
module("luci.controller.nodered", package.seeall)
|
||
|
|
||
|
function index()
|
||
|
entry({"admin", "apps"}, firstchild(), _("Apps") , 45).dependent = false
|
||
|
if not nixio.fs.access("/etc/config/nodered") then
|
||
|
return
|
||
|
end
|
||
|
|
||
|
local page = entry({"admin", "apps", "nodered"}, cbi("nodered"), _("nodered"))
|
||
|
page.order = 10
|
||
|
page.dependent = true
|
||
|
page.acl_depends = { "luci-app-nodered" }
|
||
|
entry({"admin","apps","nodered","status"},call("act_status")).leaf=true
|
||
|
end
|