view backend/couchdb/CouchApp/feedworm/views/preference/map.js @ 237:5bbb1e707e56

add maintainance script
author Dirk Olmes <dirk@xanthippe.ping.de>
date Thu, 23 Apr 2015 07:59:19 +0200
parents a5bda54309ba
children
line wrap: on
line source

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