Migrate ParseGlobalConfig.spec to new database storage API.

This commit is contained in:
Nikita Lutsenko
2016-03-07 14:11:43 -08:00
parent cea4b2bd6a
commit fa6954169e
2 changed files with 31 additions and 27 deletions

View File

@@ -75,6 +75,10 @@ export default class MongoCollection {
});
}
deleteOne(query) {
return this._mongoCollection.deleteOne(query);
}
remove(query) {
return this._mongoCollection.remove(query);
}