Commit af85c1ee by Alison Hodges

Adds the cumulative_count response

parent d3a72344
...@@ -465,12 +465,12 @@ class CourseEnrollmentModeView(BaseCourseEnrollmentView): ...@@ -465,12 +465,12 @@ class CourseEnrollmentModeView(BaseCourseEnrollmentView):
* course_id: The ID of the course for which data is returned. * course_id: The ID of the course for which data is returned.
* date: The date for which the enrollment count was computed. * date: The date for which the enrollment count was computed.
* count: The total count of enrolled users. * count: The count of currently enrolled users.
* cumulative_count: The cumulative count of users ever enrolled. * cumulative_count: The cumulative total of all users ever enrolled.
* created: The date the counts were computed. * created: The date the counts were computed.
* honor: The number of users enrolled in honor code mode. * honor: The number of users currently enrolled in honor code mode.
* professional: The number of users enrolled in professional mode. * professional: The number of users currently enrolled in professional mode.
* verified: The number of users enrolled in verified mode. * verified: The number of users currently enrolled in verified mode.
**Parameters** **Parameters**
......
...@@ -8,6 +8,9 @@ Change Log ...@@ -8,6 +8,9 @@ Change Log
* - Date * - Date
- Change - Change
* - 5 Aug 2015
- Updated :ref:`Get the Course Enrollment by Mode` to add the
``cumulative_count`` response value.
* - 21 May 2015 * - 21 May 2015
- Updated :ref:`Get the Course Video Data` to add the ``users_at_start`` - Updated :ref:`Get the Course Video Data` to add the ``users_at_start``
and ``users_at_end`` response values. and ``users_at_end`` response values.
......
...@@ -107,6 +107,7 @@ Get the Course Enrollment by Mode ...@@ -107,6 +107,7 @@ Get the Course Enrollment by Mode
"course_id": "edX/DemoX/Demo_Course", "course_id": "edX/DemoX/Demo_Course",
"date": "2014-12-10", "date": "2014-12-10",
"count": 1890, "count": 1890,
"cumulative_count": 1931,
"created": "2014-12-10T193146", "created": "2014-12-10T193146",
"honor": 945, "honor": 945,
"professional": 189, "professional": 189,
......
Markdown is supported
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