From fd8607d41e55b3d16c3c7b867c84193ea5d1569b Mon Sep 17 00:00:00 2001 From: Sanjay Tripathi Date: Mon, 7 Jan 2013 22:29:28 +0530 Subject: [PATCH] CLOUDSTACK-819:Changing GET request to POST while creating account/user to hide the passwords in the access logs --- ui/scripts/accounts.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ui/scripts/accounts.js b/ui/scripts/accounts.js index de8149fe877..59e9d8bbd15 100644 --- a/ui/scripts/accounts.js +++ b/ui/scripts/accounts.js @@ -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;