Skip to content
Snippets Groups Projects
Commit 39f36319 authored by Christoph Thelen's avatar Christoph Thelen
Browse files

Fix for #14551: View creators and their session count

parent c115347b
Branches
Tags
No related merge requests found
...@@ -5,6 +5,10 @@ ...@@ -5,6 +5,10 @@
"statistics":{ "statistics":{
"map":"function(doc) { if (doc.type == 'session') { if (doc.active == 1) { emit('openSessions', 1); } else { emit('closedSessions', 1); } } if (doc.type == 'skill_question') { if (doc.questionVariant === 'lecture') { emit('lectureQuestions', 1); } else if (doc.questionVariant === 'preparation') { emit('preparationQuestions', 1); } } if (doc.type == 'skill_question_answer') { emit('answers', 1); } if (doc.type === 'interposed_question') { emit ('interposedQuestions', 1); } }", "map":"function(doc) { if (doc.type == 'session') { if (doc.active == 1) { emit('openSessions', 1); } else { emit('closedSessions', 1); } } if (doc.type == 'skill_question') { if (doc.questionVariant === 'lecture') { emit('lectureQuestions', 1); } else if (doc.questionVariant === 'preparation') { emit('preparationQuestions', 1); } } if (doc.type == 'skill_question_answer') { emit('answers', 1); } if (doc.type === 'interposed_question') { emit ('interposedQuestions', 1); } }",
"reduce":"_count" "reduce":"_count"
},
"unique_session_creators":{
"map":"function(doc) { if (doc.type === 'session') { emit(doc.creator, 1); } }",
"reduce":"_count"
} }
} }
} }
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