mirror of
https://github.com/lukevella/rallly.git
synced 2025-06-20 19:37:09 +02:00
Updated event form to allow for time input
This commit is contained in:
parent
47b60296eb
commit
6d81b21ed1
32 changed files with 456 additions and 88 deletions
|
@ -24,7 +24,10 @@ var EventSchema = new Schema({
|
|||
},
|
||||
updated : Date,
|
||||
title : String,
|
||||
dates : [Date],
|
||||
dates : [{
|
||||
date : Date,
|
||||
times : [Date]
|
||||
}],
|
||||
emails : [{
|
||||
email : String
|
||||
}],
|
||||
|
@ -43,7 +46,7 @@ var EventSchema = new Schema({
|
|||
participants : [{
|
||||
id : Schema.Types.ObjectId,
|
||||
name : String,
|
||||
dates : [Boolean]
|
||||
votes : [Date]
|
||||
}],
|
||||
isClosed : {
|
||||
type : Boolean,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue