summaryrefslogtreecommitdiff
path: root/puppet/modules/site_couchdb/files/designs/customers.json
diff options
context:
space:
mode:
authorMicah Anderson <micah@leap.se>2013-11-26 14:49:53 -0500
committerMicah Anderson <micah@leap.se>2013-11-27 14:48:00 -0500
commitdc6c48cbc25216417a02304ec2c23663688cd99d (patch)
tree46b86e9354246e95fb0c894387a5496b15af6069 /puppet/modules/site_couchdb/files/designs/customers.json
parentab278941346cc868aad7a3900a2cd5a1007986ea (diff)
enable uploading a document to couch from a file (#4256)
deploy design documents during couch deploy (#3771) Change-Id: I4679e066303ac9b02582214c48e2e7dcfe5bd651
Diffstat (limited to 'puppet/modules/site_couchdb/files/designs/customers.json')
-rw-r--r--puppet/modules/site_couchdb/files/designs/customers.json18
1 files changed, 18 insertions, 0 deletions
diff --git a/puppet/modules/site_couchdb/files/designs/customers.json b/puppet/modules/site_couchdb/files/designs/customers.json
new file mode 100644
index 00000000..1b4bbddd
--- /dev/null
+++ b/puppet/modules/site_couchdb/files/designs/customers.json
@@ -0,0 +1,18 @@
+{
+ "_id": "_design/Customer",
+ "language": "javascript",
+ "views": {
+ "by_user_id": {
+ "map": " function(doc) {\n if ((doc['type'] == 'Customer') && (doc['user_id'] != null)) {\n emit(doc['user_id'], 1);\n }\n }\n",
+ "reduce": "_sum"
+ },
+ "by_braintree_customer_id": {
+ "map": " function(doc) {\n if ((doc['type'] == 'Customer') && (doc['braintree_customer_id'] != null)) {\n emit(doc['braintree_customer_id'], 1);\n }\n }\n",
+ "reduce": "_sum"
+ },
+ "all": {
+ "map": " function(doc) {\n if (doc['type'] == 'Customer') {\n emit(doc._id, null);\n }\n }\n"
+ }
+ },
+ "couchrest-hash": "688c401ec0230b75625c176a88fc4a02"
+} \ No newline at end of file