view backend/couchdb/CouchApp/feedworm/views/preference/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 == "preferences")
    {
        emit(doc._id, doc)
    }
}