view backend/couchdb/CouchApp/feedworm/views/feeds/map.js @ 239:a15b3ee791a1

Automated merge with https://xanthippe.duckdns.org/hg/Feedworm
author Dirk Olmes <dirk@xanthippe.ping.de>
date Sat, 25 Apr 2015 04:10:12 +0200
parents a5bda54309ba
children
line wrap: on
line source

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