2015-01-16 22:38:38 +00:00
|
|
|
-- Copyright 2008 Steven Barth <steven@midlink.org>
|
2015-01-16 22:46:42 +00:00
|
|
|
-- Copyright 2008 Jo-Philipp Wich <jow@openwrt.org>
|
2015-01-16 22:38:38 +00:00
|
|
|
-- Licensed to the public under the Apache License 2.0.
|
2011-08-12 13:16:27 +00:00
|
|
|
|
2008-07-17 18:11:15 +00:00
|
|
|
module("luci.controller.upnp", package.seeall)
|
|
|
|
|
|
|
|
function index()
|
2009-07-19 00:24:58 +00:00
|
|
|
if not nixio.fs.access("/etc/config/upnpd") then
|
2008-07-17 18:11:15 +00:00
|
|
|
return
|
|
|
|
end
|
2010-11-07 19:30:55 +00:00
|
|
|
|
2020-01-07 18:31:04 +00:00
|
|
|
entry({"admin", "services", "upnp"}, view("upnp/upnp"), _("UPnP"))
|
2010-11-07 19:30:55 +00:00
|
|
|
end
|