luci/applications/luci-app-cifsd/luasrc/controller/cifsd.lua
Richard Yu 43f6ca4517
luci-app-cifsd: add new package
Signed-off-by: Richard Yu <yurichard3839@gmail.com>
2019-10-17 00:38:49 +08:00

11 lines
284 B
Lua

-- Licensed to the public under the Apache License 2.0.
module("luci.controller.cifsd", package.seeall)
function index()
if not nixio.fs.access("/etc/config/cifsd") then
return
end
entry({"admin", "services", "cifsd"}, view("cifsd"), _("Network Shares")).dependent = true
end