- Initial commit... A DB, some routes, and basic authentication routines...

This commit is contained in:
2019-07-04 16:19:30 -04:00
commit d9a2d33913
32 changed files with 3465 additions and 0 deletions

16
models/constants.js Normal file
View File

@@ -0,0 +1,16 @@
module.exports = {
ITEM_TYPES: {
type: String,
required: true,
enum: [
'auction',
'donation',
'event',
'raffle',
'membership',
'popup',
'ticket',
],
default: 'auction',
},
};