CGUC / skybunk-server

The back-end application for Conrad Grebel University College students to stay connected
3 stars 9 forks source link

Add polls model #93

Closed picklechips closed 5 years ago

picklechips commented 5 years ago

Creates the polls model & adds it as a media type.

A poll is structured like the following:

title: String,
multiSelect: Boolean,
options: {
  text: String,
  usersVoted: [ UserID ]
}

With the following restrictions validated on save:

Original PR: https://github.com/picklechips/skybunk-server/pull/1