git ssb

0+

Piet / ssb-loomio



Tree: 9e5a426e0a4859825b9743e57b563a7845310484

Files: 9e5a426e0a4859825b9743e57b563a7845310484 / position / async / publishChooseOne.js

337 bytesRaw
1const buildChooseOne = require('../async/buildChooseOne')
2
3module.exports = function (server) {
4 return function publishChooseOne ({ poll, choice, reason, mentions }, cb) {
5 buildChooseOne(server)({ poll, choice, 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