mirror of
https://github.com/coolsnowwolf/luci.git
synced 2025-05-02 14:42:43 +08:00
12 lines
267 B
Lua
12 lines
267 B
Lua
module("luci.controller.eqos", package.seeall)
|
|
|
|
function index()
|
|
if not nixio.fs.access("/etc/config/eqos") then
|
|
return
|
|
end
|
|
|
|
local page = entry({"admin", "network", "eqos"}, cbi("eqos"), "EQoS")
|
|
page.dependent = true
|
|
page.acl_depends = { "luci-app-eqos" }
|
|
end
|