Skip to content

Commit

Permalink
Increase max CCX enrollments
Browse files Browse the repository at this point in the history
GN-1189
  • Loading branch information
igobranco committed Jun 27, 2023
1 parent 3cd68e5 commit 5227a98
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions nau_openedx_extensions/settings/production.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,3 +84,9 @@ def plugin_settings(settings):
settings.XBLOCK_SETTINGS["ScormXBlock"] = {
"STORAGE_FUNC": scorm_xblock_storage,
}

#### Custom Courses for EDX (CCX) configuration
# Allow to increase the maximum number of studends allowed in a CCX (Custom Courses for edX).
settings.CCX_MAX_STUDENTS_ALLOWED = getattr(settings, "ENV_TOKENS", {}).get(
"CCX_MAX_STUDENTS_ALLOWED", settings.CCX_MAX_STUDENTS_ALLOWED
)

0 comments on commit 5227a98

Please sign in to comment.