Files: ac1a79fec1e45652d23a6905c8540851a850a868 / position / sync / chooseOne.js
323 bytesRaw
1 | const Position = require('./position') |
2 | const { CHOOSE_ONE } = require('../../types') |
3 | |
4 | function ChooseOne ({ poll, choice, reason, channel, mentions }) { |
5 | return Position({ |
6 | poll, |
7 | positionDetails: { |
8 | type: CHOOSE_ONE, |
9 | choice |
10 | }, |
11 | reason, |
12 | channel, |
13 | mentions |
14 | }) |
15 | } |
16 | |
17 | module.exports = ChooseOne |
18 |
Built with git-ssb-web