view backend/couchdb/CouchApp/feedworm/views/preference/map.js @ 195:66d1efcb8e8a

filter out warnings that we cannot handle
author Dirk Olmes <dirk@xanthippe.ping.de>
date Fri, 25 Nov 2011 11:15:22 +0100
parents a5bda54309ba
children
line wrap: on
line source

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