git ssb

16+

Dominic / patchbay



Tree: a67310f0467e9b58b0c980e5f8c2e806b4239eee

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