git ssb

16+

Dominic / patchbay



Tree: adba0300f9dcfbcc6ea2185ab37761491139d9cd

Files: adba0300f9dcfbcc6ea2185ab37761491139d9cd / modules / relationships.js

488 bytesRaw
1
2var plugs = require('../plugs')
3
4var sbot_links2 = plugs.first(exports.sbot_links2 = [])
5
6//this is a bit crude, and doesn't actually show unfollows yet.
7
8exports.follows = function (id, cb) {
9 return sbot_links2({query: [
10 {"$filter": {"source": id, "rel": ["contact", true, false] }},
11 {"$map": "dest"}
12 ]})
13}
14
15exports.followers = function (id) {
16 return sbot_links2({query: [
17 {"$filter": {"dest": id, "rel": ["contact", true, false] }},
18 {"$map": "source"}
19 ]})
20}
21
22
23
24

Built with git-ssb-web