[pbs-devel] [PATCH proxmox-backup 1/1] ui: login: use camel case for tfa challeng HttpOnly opt in

Shannon Sterz s.sterz at proxmox.com
Wed Aug 6 12:20:05 CEST 2025


Signed-off-by: Shannon Sterz <s.sterz at proxmox.com>
---
 www/LoginView.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www/LoginView.js b/www/LoginView.js
index cf6c2cf7..de235ed6 100644
--- a/www/LoginView.js
+++ b/www/LoginView.js
@@ -114,7 +114,7 @@ Ext.define('PBS.LoginView', {
 
             let userid = data.username;
             let ticket = data.ticket;
-            let http_only = true;
+            let httpOnly = true;
             let challenge = JSON.parse(
                 decodeURIComponent(ticket.split(':')[1].slice('!tfa!'.length)),
             );
@@ -124,7 +124,7 @@ Ext.define('PBS.LoginView', {
                     userid,
                     ticket,
                     challenge,
-                    http_only,
+                    httpOnly,
                     onResolve: (value) => resolve(value),
                     onReject: reject,
                 }).show();
-- 
2.47.2





More information about the pbs-devel mailing list