view backend/couchdb/CouchApp/feedworm/views/preference/map.js @ 203:173fd7b9198f

remove obsolete couchdb snippets - this feature is implemented
author dirk
date Tue, 03 Apr 2012 04:54:06 +0200
parents a5bda54309ba
children
line wrap: on
line source

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