2022-04-18 23:44:13 +08:00
|
|
|
-- Copyright (C) 2021 dz <dingzhong110@gmail.com>
|
2021-09-05 16:50:22 +08:00
|
|
|
|
|
|
|
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
|