Merge pull request #194 from houdiniproject/fix_bug_with_campaign_event_ids

Fix bug where lack of user confirmation causes some bugs to occur
This commit is contained in:
Eric Schultz 2019-05-23 11:56:11 -05:00 committed by GitHub
commit 6f11e324f4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,21 +6,31 @@ module.exports = function(npo_id) {
var eventsPath = '/nonprofits/' + npo_id + '/events/name_and_id'
request.get(campaignsPath).end(function(err, resp){
resp.body.unshift(false)
let campaign_id_names = resp.body.map((i) => {
if (i.isChildCampaign)
{
return {id: i.id, name: i.name + " - " + i.creator}
}
else
{
return {id: i.id, name: i.name}
}
})
appl.def('campaigns.data', campaign_id_names)
var dataResponse = []
if (!err) {
resp.body.unshift(false)
dataResponse = resp.body.map((i) => {
if (i.isChildCampaign)
{
return {id: i.id, name: i.name + " - " + i.creator}
}
else
{
return {id: i.id, name: i.name}
}
})
}
appl.def('campaigns.data', dataResponse)
})
request.get(eventsPath).end(function(err, resp){
resp.body.unshift(false)
appl.def('events.data', resp.body)
var dataResponse = []
if(!err) {
resp.body.unshift(false)
dataResponse = resp.body
}
appl.def('events.data', dataResponse)
})
}