Pass user keys to registration plugins

This commit is contained in:
yflory 2025-06-02 19:15:57 +02:00
parent 717986f1a7
commit 6a96595020

View File

@ -156,7 +156,7 @@ define([
}
});
const cb = (data) => {
console.error(data);
// data.edPublic, data.edPrivate
const next = Util.mkAsync(() => {
Login.redirect();
});
@ -164,7 +164,7 @@ define([
next();
} else {
extensions.forEach(ext => {
const content = ext.getContent();
const content = ext.getContent(data);
UI.emptyLoadingScreen(content);
});
}