luci/applications/luci-app-ksmbd/luasrc/controller/ksmbd.lua

12 lines
284 B
Lua
Raw Normal View History

-- 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