19 lines
379 B
Lua
19 lines
379 B
Lua
--[[
|
|
N2N V2 Luci configuration page.Made by 981213
|
|
]]--
|
|
|
|
module("luci.controller.n2n_v2", package.seeall)
|
|
|
|
function index()
|
|
|
|
if not nixio.fs.access("/etc/config/n2n_v2") then
|
|
return
|
|
end
|
|
|
|
entry({"admin", "vpn"}, firstchild(), "VPN", 45).dependent = false
|
|
|
|
local page
|
|
page = entry({"admin", "vpn", "n2n_v2"}, cbi("n2n_v2"), _("N2N v2 VPN"), 45)
|
|
page.dependent = true
|
|
end
|