git ssb

16+

Dominic / patchbay



Tree: 30ec04afff31ab4c2af7a6b66ba8fdf5dd7381c0

Files: 30ec04afff31ab4c2af7a6b66ba8fdf5dd7381c0 / message / html / meta / private.js

411 bytesRaw
1const nest = require('depnest')
2const { h } = require('mutant')
3
4exports.gives = nest('message.html.meta')
5
6exports.needs = nest({
7 'about.obs.name': 'first',
8 'message.obs.likes': 'first'
9})
10
11exports.create = (api) => {
12 return nest('message.html.meta', privateMeta)
13
14 function privateMeta (msg) {
15 if (msg.value.private) {
16 return h('i.fa.fa-lock', {
17 title: 'Private'
18 })
19 }
20 }
21}
22

Built with git-ssb-web