diff options
author | ankonym <ankonym@gmail.com> | 2015-09-28 15:42:08 +0200 |
---|---|---|
committer | ankonym <ankonym@gmail.com> | 2015-09-28 15:42:08 +0200 |
commit | 3224a73ec6b2f06cf4c43f86d5b7673e442043dd (patch) | |
tree | 74c67e24892890cca1387640aa2c28efb16c387c /puppet/modules/site_couchdb/files | |
parent | 659587b9a56274d87c8c8deda499ccea85f875b5 (diff) |
Create invite code db and design docs
Diffstat (limited to 'puppet/modules/site_couchdb/files')
-rw-r--r-- | puppet/modules/site_couchdb/files/designs/invite_codes/InviteCode.json | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/puppet/modules/site_couchdb/files/designs/invite_codes/InviteCode.json b/puppet/modules/site_couchdb/files/designs/invite_codes/InviteCode.json new file mode 100644 index 00000000..006c1ea1 --- /dev/null +++ b/puppet/modules/site_couchdb/files/designs/invite_codes/InviteCode.json @@ -0,0 +1,22 @@ +{ + "_id": "_design/InviteCode", + "language": "javascript", + "views": { + "by__id": { + "map": " function(doc) {\n if ((doc['type'] == 'InviteCode') && (doc['_id'] != null)) {\n emit(doc['_id'], 1);\n }\n }\n", + "reduce": "_sum" + }, + "by_invite_code": { + "map": " function(doc) {\n if ((doc['type'] == 'InviteCode') && (doc['invite_code'] != null)) {\n emit(doc['invite_code'], 1);\n }\n }\n", + "reduce": "_sum" + }, + "by_invite_count": { + "map": " function(doc) {\n if ((doc['type'] == 'InviteCode') && (doc['invite_count'] != null)) {\n emit(doc['invite_count'], 1);\n }\n }\n", + "reduce": "_sum" + }, + "all": { + "map": " function(doc) {\n if (doc['type'] == 'InviteCode') {\n emit(doc._id, null);\n }\n }\n" + } + }, + "couchrest-hash": "83fb8f504520b4a9c7ddbb7928cd0ce3" +}
\ No newline at end of file |