* follow upstream name change to ksmbd * remove old artifacs from "applications\luci-app-cifsd\po\" Signed-off-by: Andy Walsh <andy.walsh44+github@gmail.com>
11 lines
284 B
Lua
11 lines
284 B
Lua
-- 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
|