Skip to content
Snippets Groups Projects
Commit 3e8d1fc4 authored by Andreas Gärtner's avatar Andreas Gärtner
Browse files

Add timestamp key to interposed_question views.

parent b579cb41
Branches
Tags
No related merge requests found
...@@ -6,10 +6,10 @@ ...@@ -6,10 +6,10 @@
"map":"function(doc) { if (doc.type == 'interposed_question') { emit(doc.sessionId, {subject: doc.subject,timestamp: doc.timestamp,_rev: doc._rev, read: doc.read, creator: doc.creator}); }}" "map":"function(doc) { if (doc.type == 'interposed_question') { emit(doc.sessionId, {subject: doc.subject,timestamp: doc.timestamp,_rev: doc._rev, read: doc.read, creator: doc.creator}); }}"
}, },
"by_session_full":{ "by_session_full":{
"map":"function(doc) { if (doc.type == 'interposed_question') { emit(doc.sessionId, doc); }}" "map":"function(doc) { if (doc.type == 'interposed_question') { emit([doc.sessionId, doc.timestamp], doc); }}"
}, },
"by_session_and_creator":{ "by_session_and_creator":{
"map":"function(doc) { if (doc.type == 'interposed_question') { emit([doc.sessionId, doc.creator], doc); }}" "map":"function(doc) { if (doc.type == 'interposed_question') { emit([doc.sessionId, doc.creator, doc.timestamp], doc); }}"
}, },
"count_by_session":{ "count_by_session":{
"map":"function(doc) { if (doc.type == 'interposed_question') { emit(doc.sessionId, doc); }}", "map":"function(doc) { if (doc.type == 'interposed_question') { emit(doc.sessionId, doc); }}",
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment