git ssb

16+

Dominic / patchbay



Tree: a67310f0467e9b58b0c980e5f8c2e806b4239eee

Files: a67310f0467e9b58b0c980e5f8c2e806b4239eee / message / html / meta / unread.js

433 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', unread)
13
14 // UnreadFeature (search codebase for this if extracting)
15 function unread (msg) {
16 return h('i.unread.fa.fa-star', {
17 title: 'A new message'
18 })
19 }
20}
21

Built with git-ssb-web