Mercurial > hg > Feedworm
view backend/couchdb/CouchApp/feedworm/views/preference/map.js @ 189:e5d492595bdb
the view returns feed entries for a feed sorted by update date now, no need to do sorting in-memory
author | dirk |
---|---|
date | Wed, 14 Sep 2011 00:17:55 +0200 |
parents | a5bda54309ba |
children |
line wrap: on
line source
function(doc) { if (doc.doctype == "preferences") { emit(doc._id, doc) } }