From 68018f8ff76f291d8ceae1ec0684e32fa273b1ba Mon Sep 17 00:00:00 2001 From: Rudolf Copi Eckelberg <rce16@inf.ufpr.br> Date: Mon, 3 Oct 2016 11:42:08 -0300 Subject: [PATCH] Minor syntax changes --- src/libs/models/simulation.js | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/src/libs/models/simulation.js b/src/libs/models/simulation.js index b2c7daef..fcfc26d3 100644 --- a/src/libs/models/simulation.js +++ b/src/libs/models/simulation.js @@ -49,20 +49,18 @@ SimulationSchema.methods.setInclusionGoals = function (g) { this.goals_inclusion = g; }; SimulationSchema.methods.update = function (property, value) { - if (property === "time") this.setTime(value); - if (property === "location") this.setLocation(value); - if (property === "failure_rate") this.setFailureRate(value); - if (property === "goals_care") this.setCareGoals(value); - if (property === "goals_inclusion") this.setInclusionGoals(value); + if (property === 'time') this.setTime(value); + if (property === 'location') this.setLocation(value); + if (property === 'failure_rate') this.setFailureRate(value); + if (property === 'goals_care') this.setCareGoals(value); + if (property === 'goals_inclusion') this.setInclusionGoals(value); }; -SimulationSchema.methods.run = () => { +SimulationSchema.methods.run = function () { /* Runs the Simulation with given parameters */ // if (!this.name || !this.location || !this.time) { // console.log('This is supposed to be an error.'); // } - // identify of location type can be tested with instanceof operator. - // Example: if (this.location instanceof locations.city) *Do some stuff* }; module.exports = mongoose.model('Simulation', SimulationSchema); -- GitLab