Skip to content
Snippets Groups Projects

couch: add identity view to get all keys

Merged azul requested to merge feature/different-keytypes into master
+ 8
0
function(doc) {
if (doc.type != 'Identity') {
return;
}
if (typeof doc.keys === "object") {
emit(doc.address, doc.keys);
}
}
Loading