view backend/couchdb/CouchApp/feedworm/views/feeds/map.js @ 250:f715378371ab

ignore the eric project directory
author Dirk Olmes <dirk@xanthippe.ping.de>
date Sat, 21 Oct 2017 10:31:02 +0200
parents a5bda54309ba
children
line wrap: on
line source

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