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
460 B
Lua

module("luci.controller.nextcloud", package.seeall)
function index()
entry({"admin", "nas"}, firstchild(), _("Nas") , 45).dependent = false
if not nixio.fs.access("/etc/config/nextcloud") then
return
end
local page = entry({"admin", "nas", "nextcloud"}, cbi("nextcloud"), _("Nextcloud"))
page.order = 10
page.dependent = true
page.acl_depends = { "luci-app-nextcloud" }
entry({"admin","nas","nextcloud","status"},call("act_status")).leaf=true
end