mirror of
https://github.com/ChristianLight/tutor.git
synced 2025-01-05 23:20:40 +00:00
Share grade download settings between the LMS and the CMS
The GRADES_DOWNLOAD setting is shared between the LMS and the CMS, so its definition is moved to the common settings file. This is to address part of this issue: https://discuss.overhang.io/t/grades-file-not-generating-juniper-version/704 An upgrade to the minio plugin is also required.
This commit is contained in:
parent
443d7fa46c
commit
169a96c44f
@ -2,6 +2,10 @@
|
|||||||
|
|
||||||
Note: Breaking changes between versions are indicated by "💥".
|
Note: Breaking changes between versions are indicated by "💥".
|
||||||
|
|
||||||
|
## Unreleased
|
||||||
|
|
||||||
|
- [Bugfix] Share grade download settings between the LMS and the CMS
|
||||||
|
|
||||||
## v10.0.8 (2020-06-23)
|
## v10.0.8 (2020-06-23)
|
||||||
|
|
||||||
- [Bugfix] Fix android user creation during init
|
- [Bugfix] Fix android user creation during init
|
||||||
|
@ -34,6 +34,14 @@ MEDIA_ROOT = "/openedx/media/"
|
|||||||
VIDEO_IMAGE_SETTINGS["STORAGE_KWARGS"]["location"] = MEDIA_ROOT
|
VIDEO_IMAGE_SETTINGS["STORAGE_KWARGS"]["location"] = MEDIA_ROOT
|
||||||
VIDEO_TRANSCRIPTS_SETTINGS["STORAGE_KWARGS"]["location"] = MEDIA_ROOT
|
VIDEO_TRANSCRIPTS_SETTINGS["STORAGE_KWARGS"]["location"] = MEDIA_ROOT
|
||||||
|
|
||||||
|
GRADES_DOWNLOAD = {
|
||||||
|
"STORAGE_TYPE": "",
|
||||||
|
"STORAGE_KWARGS": {
|
||||||
|
"base_url": "/media/grades/",
|
||||||
|
"location": "/openedx/media/grades",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
ORA2_FILEUPLOAD_BACKEND = "filesystem"
|
ORA2_FILEUPLOAD_BACKEND = "filesystem"
|
||||||
ORA2_FILEUPLOAD_ROOT = "/openedx/data/ora2"
|
ORA2_FILEUPLOAD_ROOT = "/openedx/data/ora2"
|
||||||
ORA2_FILEUPLOAD_CACHE_NAME = "ora2-storage"
|
ORA2_FILEUPLOAD_CACHE_NAME = "ora2-storage"
|
||||||
|
@ -11,14 +11,6 @@ PROFILE_IMAGE_BACKEND["options"]["location"] = os.path.join(
|
|||||||
MEDIA_ROOT, "profile-images/"
|
MEDIA_ROOT, "profile-images/"
|
||||||
)
|
)
|
||||||
|
|
||||||
GRADES_DOWNLOAD = {
|
|
||||||
"STORAGE_TYPE": "",
|
|
||||||
"STORAGE_KWARGS": {
|
|
||||||
"base_url": "/media/grades/",
|
|
||||||
"location": "/openedx/media/grades",
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
COURSE_CATALOG_VISIBILITY_PERMISSION = "see_in_catalog"
|
COURSE_CATALOG_VISIBILITY_PERMISSION = "see_in_catalog"
|
||||||
COURSE_ABOUT_VISIBILITY_PERMISSION = "see_about_page"
|
COURSE_ABOUT_VISIBILITY_PERMISSION = "see_about_page"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user