sparcs-kaist / biseo-backend

SPARCS Biseo Project
https://biseo.sparcs.org
MIT License
1 stars 1 forks source link

provide API for agenda participants and people who did not vote #42

Closed pacokwon closed 3 years ago

pacokwon commented 3 years ago

추가사항:

결론적으로 /api/agendas 의 응답은 다음과 같이 생겼습니다.

[
  {
    _id: '6107ea51ee385f7b67e7a3e8',
    choices: [ '찬성', '반대' ],
    status: 'progress',
    participants: [ 'pacopaco', 'testebea0f' ],
    title: 'asdf',
    content: 'qwer',
    subtitle: 'bs',
    votesCountMap: { '찬성': 0, '반대': 1 },
    createDate: 2021-08-02T12:51:29.407Z,
    expires: 2021-08-02T12:51:38.434Z,
    __v: 0,
    pplWhoDidNotVote: [ 'pacopaco' ],
    userChoice: null
  },
  {
    _id: '6107e253b0b5a36bacf94ad4',
    choices: [ '찬성', '반대' ],
    status: 'progress',
    participants: [ 'pacopaco' ],
    title: 'foo',
    content: 'bar',
    subtitle: 'baz',
    votesCountMap: { '찬성': 1, '반대': 1 },
    createDate: 2021-08-02T12:17:23.044Z,
    expires: 2021-08-02T12:22:08.455Z,
    __v: 0,
    pplWhoDidNotVote: [],
    userChoice: '반대'
  },
  {
    _id: '6107e35cb0b5a36bacf94ad7',
    choices: [ '찬성', '반대' ],
    status: 'progress',
    participants: [ 'pacopaco', 'testebea0f' ],
    title: 'bar',
    content: 'baz',
    subtitle: 'fo',
    votesCountMap: { '찬성': 1, '반대': 0 },
    createDate: 2021-08-02T12:21:48.949Z,
    expires: 2021-08-02T12:22:07.893Z,
    __v: 0,
    pplWhoDidNotVote: [ 'testebea0f' ],
    userChoice: '찬성'
  }
]