view backend/couchdb/CouchApp/feedworm/views/feeds/map.js @ 219:38d1898e7d82

include the time when logging
author Dirk Olmes <dirk@xanthippe.ping.de>
date Sun, 27 Apr 2014 06:19:04 +0200
parents a5bda54309ba
children
line wrap: on
line source

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