qos.lua 346 B

123456789101112131415
  1. -- Copyright 2008 Steven Barth <steven@midlink.org>
  2. -- Licensed to the public under the Apache License 2.0.
  3. module("luci.controller.qos", package.seeall)
  4. function index()
  5. if not nixio.fs.access("/etc/config/qos") then
  6. return
  7. end
  8. local page
  9. page = entry({"admin", "network", "qos"}, cbi("qos/qos"), _("QoS"))
  10. page.dependent = true
  11. end