[misc] MongoManager: drop unused, potentially expensive default options

All call-sites specify an options object.
This commit is contained in:
Jakob Ackermann 2021-01-04 15:47:13 +00:00
parent bbcc47a2c4
commit 1edc628454

View file

@ -34,9 +34,6 @@ module.exports = MongoManager = {
},
getProjectsDocs(project_id, options, filter, callback) {
if (options == null) {
options = { include_deleted: true }
}
const query = { project_id: ObjectId(project_id.toString()) }
if (!options.include_deleted) {
query.deleted = { $ne: true }