Commit 7b4e3b287848a46c151924177595a3e17f95410a
ensure appKey (cap.shs) is passed to ssb-client, add async.friendsGet()
Dominic Tarr committed on 8/18/2017, 8:38:17 AMParent: cfa33aa58de8d7d7f6608e54b5aa5a4e7db080b9
Files changed
sbot.js | changed |
sbot.js | ||
---|---|---|
@@ -23,9 +23,10 @@ | ||
23 | 23 … | async: { |
24 | 24 … | get: true, |
25 | 25 … | publish: true, |
26 | 26 … | addBlob: true, |
27 | - gossipConnect: true | |
27 … | + gossipConnect: true, | |
28 … | + friendsGet: true | |
28 | 29 … | }, |
29 | 30 … | pull: { |
30 | 31 … | log: true, |
31 | 32 … | userFeed: true, |
@@ -59,9 +60,19 @@ | ||
59 | 60 … | function notify (value) { |
60 | 61 … | isConn(value); connectionStatus.set(value) |
61 | 62 … | } |
62 | 63 … | |
63 | - createClient(keys, config, function (err, _sbot) { | |
64 … | + var opts = { | |
65 … | + path: config.path, | |
66 … | + remote: config.remote, | |
67 … | + host: config.host, | |
68 … | + port: config.port, | |
69 … | + key: config.key, | |
70 … | + appKey: config.caps.shs, | |
71 … | + timers: config.timers | |
72 … | + } | |
73 … | + | |
74 … | + createClient(keys, opts, function (err, _sbot) { | |
64 | 75 … | if (err) { |
65 | 76 … | return notify(err) |
66 | 77 … | } |
67 | 78 … | |
@@ -178,8 +189,11 @@ | ||
178 | 189 … | ) |
179 | 190 … | }), |
180 | 191 … | gossipConnect: rec.async(function (opts, cb) { |
181 | 192 … | sbot.gossip.connect(opts, cb) |
193 … | + }), | |
194 … | + friendsGet: rec.async(function (opts, cb) { | |
195 … | + sbot.friends.get(opts, cb) | |
182 | 196 … | }) |
183 | 197 … | }, |
184 | 198 … | pull: { |
185 | 199 … | backlinks: rec.source(query => { |
Built with git-ssb-web