view backend/couchdb/CouchApp/feedworm/views/feeds/map.js @ 183:ac1de0a467fd

clean up
author dirk
date Sun, 11 Sep 2011 06:51:14 +0200
parents a5bda54309ba
children
line wrap: on
line source

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