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 18:38:21 +00:00
|
|
|
|
|
|
|
module("luci.controller.dump1090", package.seeall)
|
|
|
|
|
|
|
|
function index()
|
|
|
|
if not nixio.fs.access("/etc/config/dump1090") then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
local page = entry({"admin", "services", "dump1090"}, cbi("dump1090"), _("dump1090"))
|
|
|
|
page.dependent = true
|
|
|
|
|
|
|
|
end
|