CLOUDSTACK-819:Changing GET request to POST while creating account/user to hide the passwords in the access logs

This commit is contained in:
Sanjay Tripathi 2013-01-07 22:29:28 +05:30 committed by Pranav Saxena
parent 569ca6d7a3
commit fd8607d41e

View File

@ -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;