Skip to content
Snippets Groups Projects
Unverified Commit 0a83272f authored by azul's avatar azul
Browse files

couch: add identity view to get all keys

This needs to be included in the platforms views.
parent 54653f75
No related branches found
No related tags found
1 merge request!61couch: add identity view to get all keys
Pipeline #
function(doc) {
if (doc.type != 'Identity') {
return;
}
if (typeof doc.keys === "object") {
emit(doc.address, doc.keys);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment