mirror of
https://github.com/apache/cloudstack.git
synced 2025-12-15 18:12:35 +01:00
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({
|
$.ajax({
|
||||||
url: createURL('createAccount'),
|
url: createURL('createAccount'),
|
||||||
|
type: "POST",
|
||||||
data: data,
|
data: data,
|
||||||
success: function(json) {
|
success: function(json) {
|
||||||
var item = json.createaccountresponse.account;
|
var item = json.createaccountresponse.account;
|
||||||
@ -920,6 +921,7 @@
|
|||||||
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: createURL('createUser'),
|
url: createURL('createUser'),
|
||||||
|
type: "POST",
|
||||||
data: data,
|
data: data,
|
||||||
success: function(json) {
|
success: function(json) {
|
||||||
var item = json.createuserresponse.user;
|
var item = json.createuserresponse.user;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user