You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
328 B
Lua
16 lines
328 B
Lua
-- PrivateRouter.com
|
|
|
|
module("luci.controller.easymesh", package.seeall)
|
|
|
|
function index()
|
|
if not nixio.fs.access("/etc/config/easymesh") then
|
|
return
|
|
end
|
|
|
|
local page
|
|
|
|
page = entry({"admin", "network", "easymesh"}, cbi("easymesh"), _("Easy Mesh"), 60)
|
|
page.dependent = true
|
|
page.acl_depends = { "luci-app-easymesh" }
|
|
end
|