git ssb

16+

Dominic / patchbay



Tree: 7e6b652a5696469876bec17b9d29a4e649627d76

Files: 7e6b652a5696469876bec17b9d29a4e649627d76 / 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