2015-01-16 22:38:38 +00:00
|
|
|
-- Copyright 2014 Álvaro Fernández Rojas <noltari@gmail.com>
|
|
|
|
-- Licensed to the public under the Apache License 2.0.
|
2014-10-28 17:03:18 +00:00
|
|
|
|
|
|
|
module("luci.controller.udpxy", package.seeall)
|
|
|
|
|
|
|
|
function index()
|
|
|
|
if not nixio.fs.access("/etc/config/udpxy") then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
local page = entry({"admin", "services", "udpxy"}, cbi("udpxy"), _("udpxy"))
|
|
|
|
page.dependent = true
|
|
|
|
|
|
|
|
end
|