mirror of https://github.com/apache/cloudstack.git
bug 14476: cloudstack 3.0 UI - IP address page - VPN tab - fix a bug that newly added VPN users didn't show up on UI when owner of IP Address is different from current login.
This commit is contained in:
parent
c242a776a7
commit
84d439f3cb
|
|
@ -2335,7 +2335,10 @@
|
|||
action: function(args) {
|
||||
$.ajax({
|
||||
url: createURL('addVpnUser'),
|
||||
data: args.data,
|
||||
data: $.extend(args.data, {
|
||||
domainid: args.context.ipAddresses[0].domainid,
|
||||
account: args.context.ipAddresses[0].account
|
||||
}),
|
||||
dataType: 'json',
|
||||
success: function(data) {
|
||||
args.response.success({
|
||||
|
|
|
|||
Loading…
Reference in New Issue