- Initial commit... A DB, some routes, and basic authentication routines...
This commit is contained in:
16
models/constants.js
Normal file
16
models/constants.js
Normal file
@@ -0,0 +1,16 @@
|
||||
module.exports = {
|
||||
ITEM_TYPES: {
|
||||
type: String,
|
||||
required: true,
|
||||
enum: [
|
||||
'auction',
|
||||
'donation',
|
||||
'event',
|
||||
'raffle',
|
||||
'membership',
|
||||
'popup',
|
||||
'ticket',
|
||||
],
|
||||
default: 'auction',
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user