view backend/couchdb/CouchApp/feedworm/views/preference/map.js @ 258:4ca1fac32dde

Pull the constant of days to keep feed entries into the abstract class
author Dirk Olmes <dirk@xanthippe.ping.de>
date Tue, 12 Mar 2019 02:39:18 +0100 (2019-03-12)
parents a5bda54309ba
children
line wrap: on
line source
function(doc)
{
    if (doc.doctype == "preferences")
    {
        emit(doc._id, doc)
    }
}