From c99af078762fd8c890d3c35b163901721dd652f9 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Tue, 17 Dec 2019 15:44:34 +0100 Subject: [PATCH] ui: do not log ticket into console Signed-off-by: Thomas Lamprecht --- www/Utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/Utils.js b/www/Utils.js index cbd53122..ab44a414 100644 --- a/www/Utils.js +++ b/www/Utils.js @@ -9,7 +9,7 @@ Ext.define('PBS.Utils', { updateLoginData: function(data) { Proxmox.CSRFPreventionToken = data.CSRFPreventionToken; Proxmox.UserName = data.username; - console.log(data.ticket); + //console.log(data.ticket); // fixme: use secure flag once we have TLS //Ext.util.Cookies.set('PBSAuthCookie', data.ticket, null, '/', null, true ); Ext.util.Cookies.set('PBSAuthCookie', data.ticket, null, '/', null, false);