view backend/couchdb/CouchApp/feedworm/views/preference/map.js @ 251:3ce39af93e77 pyqt5

Update to PyQt5
author Dirk Olmes <dirk@xanthippe.ping.de>
date Sun, 22 Oct 2017 03:40:44 +0200
parents a5bda54309ba
children
line wrap: on
line source

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