summaryrefslogtreecommitdiff
path: root/puppet/modules/site_couchdb/files/designs/tokens.json
diff options
context:
space:
mode:
Diffstat (limited to 'puppet/modules/site_couchdb/files/designs/tokens.json')
-rw-r--r--puppet/modules/site_couchdb/files/designs/tokens.json14
1 files changed, 0 insertions, 14 deletions
diff --git a/puppet/modules/site_couchdb/files/designs/tokens.json b/puppet/modules/site_couchdb/files/designs/tokens.json
deleted file mode 100644
index b9025f15..00000000
--- a/puppet/modules/site_couchdb/files/designs/tokens.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "_id": "_design/Token",
- "language": "javascript",
- "views": {
- "by_last_seen_at": {
- "map": " function(doc) {\n if ((doc['type'] == 'Token') && (doc['last_seen_at'] != null)) {\n emit(doc['last_seen_at'], 1);\n }\n }\n",
- "reduce": "_sum"
- },
- "all": {
- "map": " function(doc) {\n if (doc['type'] == 'Token') {\n emit(doc._id, null);\n }\n }\n"
- }
- },
- "couchrest-hash": "541dd924551c42a2317b345effbe65cc"
-} \ No newline at end of file