summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-samba4/luasrc/controller/samba4.lua
blob: 8ad0e52e36fd83fe0f57061ac55d5d22450a5fb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
-- Licensed to the public under the Apache License 2.0.

module("luci.controller.samba4", package.seeall)

function index()
	if not nixio.fs.access("/etc/config/samba4") then
		return
	end

	local page

	page = entry({"admin", "services", "samba4"}, cbi("samba4"), _("Network Shares"))
	page.dependent = true
end