(id)
| 351 | } |
| 352 | |
| 353 | remove(id) { |
| 354 | return db.Chart.destroy({ where: { id } }) |
| 355 | .then((response) => { |
| 356 | return response; |
| 357 | }) |
| 358 | .catch((error) => { |
| 359 | return new Promise((resolve, reject) => reject(error)); |
| 360 | }); |
| 361 | } |
| 362 | |
| 363 | updateChartData(id, user, { |
| 364 | noSource, |
no outgoing calls
no test coverage detected