mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-819:Changing GET request to POST while creating account/user to hide the passwords in the access logs
This commit is contained in:
parent
569ca6d7a3
commit
fd8607d41e
|
|
@ -229,6 +229,7 @@
|
|||
|
||||
$.ajax({
|
||||
url: createURL('createAccount'),
|
||||
type: "POST",
|
||||
data: data,
|
||||
success: function(json) {
|
||||
var item = json.createaccountresponse.account;
|
||||
|
|
@ -920,6 +921,7 @@
|
|||
|
||||
$.ajax({
|
||||
url: createURL('createUser'),
|
||||
type: "POST",
|
||||
data: data,
|
||||
success: function(json) {
|
||||
var item = json.createuserresponse.user;
|
||||
|
|
|
|||
Loading…
Reference in New Issue