16 lines
346 B
Lua
16 lines
346 B
Lua
|
-- Copyright 2008 Steven Barth <steven@midlink.org>
|
||
|
-- Licensed to the public under the Apache License 2.0.
|
||
|
|
||
|
module("luci.controller.qos", package.seeall)
|
||
|
|
||
|
function index()
|
||
|
if not nixio.fs.access("/etc/config/qos") then
|
||
|
return
|
||
|
end
|
||
|
|
||
|
local page
|
||
|
|
||
|
page = entry({"admin", "network", "qos"}, cbi("qos/qos"), _("QoS"))
|
||
|
page.dependent = true
|
||
|
end
|