Skip to content

Commit e75bc52

Browse files
author
Vikas Agarwal
committed
getting raw response from sequelize operation instead of sequelize objects
1 parent 7e6846d commit e75bc52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/routes/admin/project-index-create.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ module.exports = [
5151
logger.debug('fields', fields);
5252

5353
const eClient = util.getElasticSearchClient();
54-
return models.Project.findProjectRange(models, projectIdStart, projectIdEnd, fields, false)
54+
return models.Project.findProjectRange(models, projectIdStart, projectIdEnd, fields, true)
5555
.then((_projects) => {
5656
const projects = _projects.map((_project) => {
5757
const project = _project;

0 commit comments

Comments
 (0)