From 55e6fc3dcee78d81ecc35a0a5307caf01e7664df Mon Sep 17 00:00:00 2001 From: ben Date: Fri, 8 Sep 2023 06:35:52 +0000 Subject: [PATCH] Update 'luasrc/controller/filebrowser.lua' --- luasrc/controller/filebrowser.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/luasrc/controller/filebrowser.lua b/luasrc/controller/filebrowser.lua index 83ebf70..c8fd70b 100755 --- a/luasrc/controller/filebrowser.lua +++ b/luasrc/controller/filebrowser.lua @@ -2,14 +2,14 @@ module("luci.controller.filebrowser", package.seeall) function index() - entry({"admin", "apps"}, firstchild(), _("Apps") , 45).dependent = false + entry({"admin", "nas"}, firstchild(), _("Nas") , 45).dependent = false if not nixio.fs.access("/etc/config/filebrowser") then return end - local page = entry({"admin", "apps", "filebrowser"}, cbi("filebrowser"), _("Filebrowser")) + local page = entry({"admin", "nas", "filebrowser"}, cbi("filebrowser"), _("Filebrowser")) page.order = 10 page.dependent = true page.acl_depends = { "luci-app-filebrowser" } - entry({"admin","apps","filebrowser","status"},call("act_status")).leaf=true + entry({"admin","nas","filebrowser","status"},call("act_status")).leaf=true end