Hi Chris,
So I'm trying out the filters again, but for some reason even if I return false from my filter function, I get back every doc in the local db.
This is my filter function
filters: {by_attr: (function(doc, req) {
return false;
}).toString()
}
I JSON.stringify the above, of course.
I know this seems crazy, but I just wanted to make sure that the filters do indeed work.
slim