2015-01-16 22:38:38 +00:00
|
|
|
-- Copyright 2012 Gabor Varga <vargagab@gmail.com>
|
|
|
|
-- Licensed to the public under the Apache License 2.0.
|
2012-04-15 20:26:10 +00:00
|
|
|
|
|
|
|
module("luci.controller.transmission", package.seeall)
|
|
|
|
|
|
|
|
function index()
|
|
|
|
if not nixio.fs.access("/etc/config/transmission") then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
local page = entry({"admin", "services", "transmission"}, cbi("transmission"), _("Transmission"))
|
|
|
|
page.dependent = true
|
|
|
|
|
|
|
|
end
|