blob: c81177368ee3ee7983695e880bbc146805c13086 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
-- Copyright 2008 Yanira <forum-2008@email.de>
-- Licensed to the public under the Apache License 2.0.
module("luci.controller.ushare", package.seeall)
function index()
if not nixio.fs.access("/etc/config/ushare") then
return
end
local page
page = entry({"admin", "services", "ushare"}, cbi("ushare"), _("uShare"), 60)
page.dependent = true
end
|