2015-01-17 06:38:38 +08:00
|
|
|
-- Copyright 2008 Steven Barth <steven@midlink.org>
|
2015-01-17 06:46:42 +08:00
|
|
|
-- Copyright 2008 Jo-Philipp Wich <jow@openwrt.org>
|
2015-01-17 06:38:38 +08:00
|
|
|
-- Licensed to the public under the Apache License 2.0.
|
2011-08-12 21:16:27 +08:00
|
|
|
|
2008-10-06 03:49:21 +08:00
|
|
|
module("luci.controller.openvpn", package.seeall)
|
|
|
|
|
|
|
|
function index()
|
2012-11-26 20:53:43 +08:00
|
|
|
entry( {"admin", "services", "openvpn"}, cbi("openvpn"), _("OpenVPN") )
|
2008-10-10 06:24:21 +08:00
|
|
|
entry( {"admin", "services", "openvpn", "basic"}, cbi("openvpn-basic"), nil ).leaf = true
|
|
|
|
entry( {"admin", "services", "openvpn", "advanced"}, cbi("openvpn-advanced"), nil ).leaf = true
|
2008-10-06 03:49:21 +08:00
|
|
|
end
|