view backend/couchdb/CouchApp/feedworm/views/feeds/map.js @ 212:1262b1168f1f

calculate the number of unread entries while performing map/reduce
author dirk
date Sat, 18 Aug 2012 04:44:51 +0200
parents a5bda54309ba
children
line wrap: on
line source

function(doc)
{
    if (doc.doctype == "feed")
    {
        emit(doc._id, doc)
    }
}