diff --git a/src/main/resources/views/statistics b/src/main/resources/views/statistics index f958788e0ea3b358b320b7dc6881817d83993548..7bcfb8d1659d0bb0fb0fdac48b4fb0a8e195dcbd 100644 --- a/src/main/resources/views/statistics +++ b/src/main/resources/views/statistics @@ -3,7 +3,7 @@ "language":"javascript", "views":{ "statistics":{ - "map":"function(doc) { if (doc.type == 'session') { if (doc.active == 1) { emit('openSessions', 1); } else { emit('closedSessions', 1); } } if (doc.type == 'skill_question') { emit('questions', 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" } }