DEBUG: console statements for everyone! (#84)

This commit is contained in:
Matthew Ryan Dillon 2018-04-10 20:14:48 -07:00 committed by GitHub
parent 234dc3a34c
commit 86ab62cb0f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -43,27 +43,38 @@ export default Route.extend({
const store = this.get('store'); const store = this.get('store');
/* eslint-disable no-console */
let project = controller.get('project'); let project = controller.get('project');
console.log('project', project);
project = project.map(id => store.peekRecord('project', id)); project = project.map(id => store.peekRecord('project', id));
let region = controller.get('region'); let region = controller.get('region');
console.log('region', region);
region = region.map(id => store.peekRecord('region', id)); region = region.map(id => store.peekRecord('region', id));
let site = controller.get('site'); let site = controller.get('site');
console.log('site', site);
site = site.map(id => store.peekRecord('site', id)); site = site.map(id => store.peekRecord('site', id));
let studyLocation = controller.get('study_location'); let studyLocation = controller.get('study_location');
console.log('studyLocation', studyLocation);
studyLocation = studyLocation.map(id => store.peekRecord('study-location', id)); studyLocation = studyLocation.map(id => store.peekRecord('study-location', id));
let collectionMethod = controller.get('collection_method'); let collectionMethod = controller.get('collection_method');
console.log('collectionMethod', collectionMethod);
collectionMethod = collectionMethod.map(id => store.peekRecord('collection-method', id)); collectionMethod = collectionMethod.map(id => store.peekRecord('collection-method', id));
let adfgPermit = controller.get('adfg_permit'); let adfgPermit = controller.get('adfg_permit');
console.log('adfgPermit', adfgPermit);
adfgPermit = adfgPermit.map(id => store.peekRecord('adfg-permit', id)); adfgPermit = adfgPermit.map(id => store.peekRecord('adfg-permit', id));
let species = controller.get('species'); let species = controller.get('species');
console.log('species', species);
species = species.map(id => store.peekRecord('species', id)); species = species.map(id => store.peekRecord('species', id));
/* eslint-enable no-console */
const numberOfTraps = controller.get('number_of_traps'); const numberOfTraps = controller.get('number_of_traps');
const collectionStartDate = controller.get('collection_start_date'); const collectionStartDate = controller.get('collection_start_date');
const collectionEndDate = controller.get('collection_end_date'); const collectionEndDate = controller.get('collection_end_date');