git ssb

0+

Piet / ssb-loomio



Tree: 54da6278f7b2e4b69c93d48ac2318edec1ca00f7

Files: 54da6278f7b2e4b69c93d48ac2318edec1ca00f7 / position / async / publishPosition.js

335 bytesRaw
1const buildPosition = require('../async/buildPosition')
2
3module.exports = function (server) {
4 return function publishPosition ({ poll, details, reason, mentions }, cb) {
5 buildPosition(server)({ poll, details, reason, mentions }, (err, position) => {
6 if (err) return cb(err)
7
8 server.publish(position, cb)
9 })
10 }
11}
12

Built with git-ssb-web