mirror of
https://git.proxmox.com/git/proxmox-widget-toolkit
synced 2025-07-17 18:12:48 +00:00
return cookie again in authOK
the calling code did require that authOK returns the cookie if there is a valid one make it now very explicit that the cookie gets returned instead of using implicit short-circuit behaviour Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
parent
ac6184986c
commit
2561610c8e
6
Utils.js
6
Utils.js
@ -208,7 +208,11 @@ Ext.define('Proxmox.Utils', { utilities: {
|
||||
return undefined;
|
||||
}
|
||||
let cookie = Ext.util.Cookies.get(Proxmox.Setup.auth_cookie_name);
|
||||
return (Proxmox.UserName !== '') && (cookie && !cookie.startsWith("PVE:tfa!"));
|
||||
if (Proxmox.UserName !== '' && cookie && !cookie.startsWith("PVE:tfa!")) {
|
||||
return cookie;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
},
|
||||
|
||||
authClear: function() {
|
||||
|
Loading…
Reference in New Issue
Block a user