continue work on nonprofit show views

This commit is contained in:
Michael Q Larson
2015-04-01 22:31:08 -07:00
parent fa74a1b454
commit 1248cde97f
6 changed files with 85 additions and 38 deletions

View File

@@ -19,7 +19,9 @@ var nonprofitSchema = new mongoose.Schema({
projectDescription: String,
logoUrl: String,
imageUrl: String,
estimatedHours: String
estimatedHours: String,
interestedCampers: [],
confirmedCampers: []
});
module.exports = mongoose.model('Nonprofit', nonprofitSchema);