MCPcopy Index your code
hub / github.com/chartbrew/chartbrew / findAll

Method findAll

server/controllers/ChartController.js:114–122  ·  view source on GitHub ↗
(conditions = {})

Source from the content-addressed store, hash-verified

112 }
113
114 findAll(conditions = {}) {
115 return db.Chart.findAll(conditions)
116 .then((charts) => {
117 return new Promise((resolve) => resolve(charts));
118 })
119 .catch((error) => {
120 return new Promise((resolve, reject) => reject(error));
121 });
122 }
123
124 findByProject(projectId) {
125 return db.Chart.findAll({

Callers 4

findByProjectMethod · 0.45
changeDashboardOrderMethod · 0.45
exportChartDataMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected