Make the issues app use the global id picker, fix jsonb issues, and fix the global id picker.

This commit is contained in:
2024-04-14 13:47:28 +01:00
parent e2c0f82ec0
commit 96cb6f4b12
4 changed files with 10 additions and 50 deletions

View File

@ -85,6 +85,9 @@ tfrpc.register(async function store_message(message) {
tfrpc.register(function apps() {
return core.apps();
});
tfrpc.register(function getActiveIdentity() {
return ssb.getActiveIdentity();
});
tfrpc.register(async function try_decrypt(id, content) {
return await ssb.privateMessageDecrypt(id, content);
});