README for enrollments app

This commit is contained in:
Nimisha Asthagiri
2019-05-28 13:50:49 -04:00
parent 9127075bcf
commit d3b79ae5f7
2 changed files with 17 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
Status: Maintenance
Responsibilities
================
The enrollments app provides basic CRUD functionality and APIs for managing Course-Run enrollments.
Enrollments in Programs is managed by the ``lms/djangoapps/program_enrollments\`` app.
Direction: Keep
===============
Glossary
========
More Documentation
==================

View File

@@ -746,7 +746,7 @@ class EnrollmentListView(APIView, ApiKeyPermissionMixIn):
enterprise_api_client.post_enterprise_course_enrollment(username, text_type(course_id), None)
except EnterpriseApiException as error:
log.exception(u"An unexpected error occurred while creating the new EnterpriseCourseEnrollment "
"for user [%s] in course run [%s]", username, course_id)
u"for user [%s] in course run [%s]", username, course_id)
raise CourseEnrollmentError(text_type(error))
kwargs = {
'username': username,