close to getting all nonprofits to render

This commit is contained in:
Michael Q Larson
2015-03-30 20:08:29 -07:00
parent acea52dc1b
commit ca404e66e8
8 changed files with 60 additions and 135 deletions

View File

@@ -9,11 +9,7 @@ var secrets = require('../config/secrets');
var nonprofitSchema = new mongoose.Schema({
name: String,
registeredNonprofit: true,
requestedDeliverables: Array,
existingUserbase: true,
acceptJavascript: true,
agreeToTerms: true,
whatDoesNonprofitDo: String,
websiteLink: String,
stakeholderName: String,
@@ -23,8 +19,6 @@ var nonprofitSchema = new mongoose.Schema({
projectDescription: String,
logoUrl: String,
imageUrl: String,
interestedCampers: Array,
confirmedCampers: Array,
estimatedHours: String
});