Skip to content

Commit

Permalink
fix(frontend): fix algo profiles modules
Browse files Browse the repository at this point in the history
  • Loading branch information
DamienDrozd committed Dec 6, 2023
1 parent 6a1c188 commit af788e4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/controllers/match.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,10 +139,13 @@ exports.getCompatibleProfil = async (req, res, next) => {
},
"biographie": {
$exists: true
},
"profileModules": {
$exists: true
}
},
[
"firstName", "lastName", "gender", "gif", "movie", "music", "music", "questions", "interests", "biographie", "isFake"
"firstName", "lastName", "gender", "gif", "movie", "music", "music", "questions", "interests", "biographie", "isFake", "profileModules"
]
)
.then(profiles => {
Expand Down

0 comments on commit af788e4

Please sign in to comment.