mirror of
https://github.com/dlang-community/dfmt.git
synced 2025-04-25 21:00:03 +03:00
11 lines
392 B
D
11 lines
392 B
D
auto find()
|
|
{
|
|
return Map.findRange(["$and": [
|
|
["deleted": Bson(false)],
|
|
["$or": Bson([
|
|
serializeToBson(["forceUpdate": Bson(true)]),
|
|
serializeToBson(["info.approved": ["$eq": Bson(1)], "fetchDate": ["$lte": Bson(BsonDate(currentTime - 60.days))]]),
|
|
serializeToBson(["info.approved": ["$ne": Bson(1)], "fetchDate": ["$lte": Bson(BsonDate(currentTime - 14.days))]])
|
|
])]
|
|
]]);
|
|
}
|