mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-730: UI > VPC > Router > site-to-site VPN > VPN Connection > Create VPN Connection - add new checkbox "passive", default it as unchecked.
This commit is contained in:
parent
152e23a00b
commit
c090a2df7a
|
|
@ -2792,7 +2792,12 @@
|
|||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
},
|
||||
passive: {
|
||||
label: 'Passive',
|
||||
isBoolean: true,
|
||||
isChecked: false
|
||||
}
|
||||
}
|
||||
},
|
||||
action: function(args) {
|
||||
|
|
@ -2819,7 +2824,8 @@
|
|||
url: createURL('createVpnConnection'),
|
||||
data: {
|
||||
s2svpngatewayid: vpngatewayid,
|
||||
s2scustomergatewayid: args.data.vpncustomergatewayid
|
||||
s2scustomergatewayid: args.data.vpncustomergatewayid,
|
||||
passive: (args.data.passive == 'on'? true: false)
|
||||
},
|
||||
success: function(json) {
|
||||
var jid = json.createvpnconnectionresponse.jobid;
|
||||
|
|
|
|||
Loading…
Reference in New Issue