summaryrefslogtreecommitdiff
path: root/app/designs/identity/cert_fingerprints_by_expiry.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/designs/identity/cert_fingerprints_by_expiry.js')
-rw-r--r--app/designs/identity/cert_fingerprints_by_expiry.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/app/designs/identity/cert_fingerprints_by_expiry.js b/app/designs/identity/cert_fingerprints_by_expiry.js
new file mode 100644
index 0000000..995219b
--- /dev/null
+++ b/app/designs/identity/cert_fingerprints_by_expiry.js
@@ -0,0 +1,12 @@
+function(doc) {
+ if (doc.type != 'Identity') {
+ return;
+ }
+ if (typeof doc.cert_fingerprints === "object") {
+ for (fp in doc.cert_fingerprints) {
+ if (doc.cert_fingerprints.hasOwnProperty(fp)) {
+ emit(doc.cert_fingerprints[fp], fp);
+ }
+ }
+ }
+}