git ssb

16+

Dominic / patchbay



Tree: 23576a5dca023c72b5a92bf3c1f5b35bb4f22744

Files: 23576a5dca023c72b5a92bf3c1f5b35bb4f22744 / modules / follow.js

418 bytesRaw
1var h = require('hyperscript')
2var u = require('../util')
3exports.avatar = []
4
5//render a message when someone follows someone,
6//so you see new users
7exports.message_content = function (msg, sbot) {
8
9 if(msg.value.content.type == 'contact') {
10 return h('div.contact',
11 'follows',
12 u.first(exports.avatar, function (plug) {
13 return plug(msg.value.content.contact, sbot)
14 })
15 )
16 }
17}
18
19
20
21
22
23
24

Built with git-ssb-web