Skip to content
Snippets Groups Projects
Commit 5d25d0e9 authored by Xavier Morel's avatar Xavier Morel
Browse files

[FIX] portal: don't eagerly load security template


There's absolutely no need to load it on every page of the website. It
probably doesn't even need to be cached on the JS side given it's used
in all of 3 actions of the portal user's security page.

Reported by jke.

Also remove leftover console.log call while at it.

closes odoo/odoo#57636

X-original-commit: 00c1c9a7
Signed-off-by: default avatarXavier Morel (xmo) <xmo@odoo.com>
parent ab59d0bf
No related branches found
No related tags found
No related merge requests found
......@@ -183,7 +183,6 @@ publicWidget.registry.TOTPButton = publicWidget.Widget.extend({
document.getElementById('totp_wizard_view').textContent,
'application/xhtml+xml'
);
console.log(doc);
const xmlBody = doc.querySelector('sheet *');
const [body, , codeInput] = fixupViewBody(xmlBody, record);
......
......@@ -163,8 +163,6 @@ publicWidget.registry.portalSearchPanel = publicWidget.Widget.extend({
},
});
const tmpl = ajax.loadXML('/portal/static/src/xml/portal_security.xml', qweb);
/**
* Wraps an RPC call in a check for the result being an identity check action
* descriptor. If no such result is found, just returns the wrapped promise's
......@@ -184,7 +182,7 @@ function handleCheckIdentity(rpc, wrapped) {
return r;
}
const check_id = r.res_id;
return tmpl.then(() => new Promise((resolve, reject) => {
return ajax.loadXML('/portal/static/src/xml/portal_security.xml', qweb).then(() => new Promise((resolve, reject) => {
const d = new Dialog(null, {
title: _t("Security Control"),
$content: qweb.render('portal.identitycheck'),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment