summaryrefslogtreecommitdiff
path: root/common/src/leap/soledad/common/ddocs/transactions/views/log/map.js
blob: 94ef63cacfd82daea98f5e2abf29dc889beb5c57 (plain)
1
2
3
4
5
6
7
function(doc) {
    if (doc.u1db_transactions)
        doc.u1db_transactions.forEach(function(t) {
            emit(t[0],  // use timestamp as key so the results are ordered
                 t[1]); // value is the transaction_id
        });
}