mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
[misc] MongoManager: drop unused, potentially expensive default options
All call-sites specify an options object.
This commit is contained in:
parent
bbcc47a2c4
commit
1edc628454
1 changed files with 0 additions and 3 deletions
|
@ -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 }
|
||||
|
|
Loading…
Reference in a new issue