view backend/couchdb/CouchApp/feedworm/views/feeds/map.js @ 252:39080a271bf3 pyqt5

fix the makefile
author Dirk Olmes <dirk@xanthippe.ping.de>
date Sun, 05 Nov 2017 02:49:14 +0100
parents a5bda54309ba
children
line wrap: on
line source

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