mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-07-28 12:02:00 +08:00
10 lines
341 B
Lua
10 lines
341 B
Lua
-- Copyright 2024 sbwml <admin@cooluc.com>
|
|
-- Licensed to the public under the GPL-3.0 License.
|
|
|
|
module("luci.controller.smbuser", package.seeall)
|
|
|
|
function index()
|
|
if not nixio.fs.access("/etc/config/smbuser") then return end
|
|
entry({"admin", "services", "smbuser"}, cbi("smbuser"), _("Samba4 User Management")).dependent = true
|
|
end
|