mirror of
https://github.com/cryptpad/cryptpad.git
synced 2026-09-12 19:49:59 +05:00
Pass user keys to registration plugins
This commit is contained in:
parent
717986f1a7
commit
6a96595020
@ -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);
|
||||
});
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user