blob: a3301d4843a81207a4a401f728299e73477105c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
-- Licensed to the public under the Apache License 2.0.
module("luci.controller.ksmbd", package.seeall)
function index()
if not nixio.fs.access("/etc/config/ksmbd") then
return
end
entry({"admin", "services", "ksmbd"}, view("ksmbd"), _("Network Shares")).dependent = true
end
|