fixing notifications.prune

This commit is contained in:
Baris Usakli
2013-12-05 15:25:58 -05:00
parent 705754e823
commit 806a454b05
4 changed files with 79 additions and 35 deletions

View File

@@ -20,7 +20,6 @@
process.exit();
}
// TODO: fill out settings.db
module.sessionStore = new mongoStore({
db: db
});
@@ -477,6 +476,14 @@
});
}
module.sortedSetScore = function(key, value, callback) {
throw new Error('not-implemented');
}
module.sortedSetsScore = function(keys, value, callback) {
throw new Error('not-implemented');
}
// lists
module.listPrepend = function(key, value, callback) {
module.isObjectField(key, 'array', function(err, exists) {