share: provide collection api fix#2
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@@ -42,6 +42,15 @@ exports.byId = function (id, callback) {
|
||||
});
|
||||
}
|
||||
|
||||
exports.collection = function (callback) {
|
||||
dbo.collection("shares")
|
||||
.find({})
|
||||
.toArray((err, result) => {
|
||||
if (err) throw err;
|
||||
cb(callback, result);
|
||||
});
|
||||
}
|
||||
|
||||
exports.exists = function (object_id, callback) {
|
||||
dbo.collection("shares")
|
||||
.findOne({ object_id: ObjectId(object_id) })
|
||||
|
||||
Reference in New Issue
Block a user