summaryrefslogtreecommitdiff
path: root/puppet/modules/site_couchdb/files/designs/identities/Identity.json
diff options
context:
space:
mode:
authorAzul <azul@riseup.net>2013-11-19 15:15:59 +0100
committerAzul <azul@riseup.net>2013-11-21 11:31:53 +0100
commit1ada62ad64b9664783de875820242fc404f967f2 (patch)
tree4babb699cf469c42eed41ae1bec30f34427eda95 /puppet/modules/site_couchdb/files/designs/identities/Identity.json
parent8dd6174fe2077a94c8ede027a8364d7ff3372f3d (diff)
initial design documents from the webapp (#3770)
Diffstat (limited to 'puppet/modules/site_couchdb/files/designs/identities/Identity.json')
-rw-r--r--puppet/modules/site_couchdb/files/designs/identities/Identity.json28
1 files changed, 28 insertions, 0 deletions
diff --git a/puppet/modules/site_couchdb/files/designs/identities/Identity.json b/puppet/modules/site_couchdb/files/designs/identities/Identity.json
new file mode 100644
index 00000000..8cf8c39b
--- /dev/null
+++ b/puppet/modules/site_couchdb/files/designs/identities/Identity.json
@@ -0,0 +1,28 @@
+{
+ "_id": "_design/Identity",
+ "language": "javascript",
+ "views": {
+ "by_user_id": {
+ "map": " function(doc) {\n if ((doc['type'] == 'Identity') && (doc['user_id'] != null)) {\n emit(doc['user_id'], 1);\n }\n }\n",
+ "reduce": "_sum"
+ },
+ "by_address_and_destination": {
+ "map": " function(doc) {\n if ((doc['type'] == 'Identity') && (doc['address'] != null) && (doc['destination'] != null)) {\n emit([doc['address'], doc['destination']], 1);\n }\n }\n",
+ "reduce": "_sum"
+ },
+ "by_address": {
+ "map": " function(doc) {\n if ((doc['type'] == 'Identity') && (doc['address'] != null)) {\n emit(doc['address'], 1);\n }\n }\n",
+ "reduce": "_sum"
+ },
+ "pgp_key_by_email": {
+ "map": " function(doc) {\n if (doc.type != 'Identity') {\n return;\n }\n emit(doc.address, doc.keys[\"pgp\"]);\n }\n"
+ },
+ "disabled": {
+ "map": " function(doc) {\n if (doc.type != 'Identity') {\n return;\n }\n if (typeof doc.user_id === \"undefined\") {\n emit(doc._id, 1);\n }\n }\n"
+ },
+ "all": {
+ "map": " function(doc) {\n if (doc['type'] == 'Identity') {\n emit(doc._id, null);\n }\n }\n"
+ }
+ },
+ "couchrest-hash": "5b0ece9d28b3025d18ea71fddf3a532f"
+} \ No newline at end of file