Use ssb.following() in the ssb app.

git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4590 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
2023-10-30 16:18:07 +00:00
parent 01ba90fdba
commit 7e02cb90f6
3 changed files with 6 additions and 74 deletions

View File

@ -30,6 +30,9 @@ tfrpc.register(async function getIdentities() {
tfrpc.register(async function getAllIdentities() {
return ssb.getAllIdentities();
});
tfrpc.register(async function following(ids, depth) {
return ssb.following(ids, depth);
});
tfrpc.register(async function getBroadcasts() {
return ssb.getBroadcasts();
});