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

Implement view for #15354: Return users who answered questions

parent 7e11e29e
No related merge requests found
...@@ -9,6 +9,10 @@ ...@@ -9,6 +9,10 @@
"unique_session_creators":{ "unique_session_creators":{
"map":"function(doc) { if (doc.type === 'session') { emit(doc.creator, 1); } }", "map":"function(doc) { if (doc.type === 'session') { emit(doc.creator, 1); } }",
"reduce":"_count" "reduce":"_count"
},
"active_student_users":{
"map":"function(doc) { if (doc.type === 'skill_question_answer') { emit(doc.user, 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