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