2015-01-16 22:38:38 +00:00
|
|
|
-- Copyright 2008 Steven Barth <steven@midlink.org>
|
2015-01-16 22:46:42 +00:00
|
|
|
-- Copyright 2008 Jo-Philipp Wich <jow@openwrt.org>
|
2015-01-16 22:38:38 +00:00
|
|
|
-- Licensed to the public under the Apache License 2.0.
|
2011-08-12 13:16:27 +00:00
|
|
|
|
2008-10-05 19:49:21 +00:00
|
|
|
module("luci.controller.openvpn", package.seeall)
|
|
|
|
|
|
|
|
function index()
|
2012-11-26 12:53:43 +00:00
|
|
|
entry( {"admin", "services", "openvpn"}, cbi("openvpn"), _("OpenVPN") )
|
2008-10-09 22:24:21 +00: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-05 19:49:21 +00:00
|
|
|
end
|