view backend/couchdb/CouchApp/feedworm/views/preference/map.js @ 215:b7caf487bc54

run make prior to starting the worm
author Dirk Olmes <dirk@xanthippe.ping.de>
date Mon, 13 May 2013 17:35:11 +0200
parents a5bda54309ba
children
line wrap: on
line source

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