Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
8a25c759
Commit
8a25c759
authored
Jan 18, 2016
by
David Ormsbee
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixup: return key not store
parent
0770b7f1
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
1 deletions
+7
-1
cms/envs/common.py
+3
-0
common/lib/xmodule/xmodule/modulestore/mixed.py
+1
-1
lms/envs/common.py
+3
-0
No files found.
cms/envs/common.py
View file @
8a25c759
...
...
@@ -182,6 +182,9 @@ FEATURES = {
'ENABLE_SPECIAL_EXAMS'
:
False
,
'ORGANIZATIONS_APP'
:
False
,
# Enable reporting metrics to DataDog
'ENABLE_DATADOG_REPORTING'
:
False
,
}
ENABLE_JASMINE
=
False
...
...
common/lib/xmodule/xmodule/modulestore/mixed.py
View file @
8a25c759
...
...
@@ -332,7 +332,7 @@ class MixedModuleStore(ModuleStoreDraftAndPublished, ModuleStoreWriteBase):
# If there is a mapping that match this org/course/run, use that
for
key
in
possible_keys
:
if
key
in
self
.
mappings
:
return
self
.
mappings
[
key
]
return
key
# Otherwise, return the key created by the default store
return
self
.
default_modulestore
.
make_course_key
(
org
,
course
,
run
)
...
...
lms/envs/common.py
View file @
8a25c759
...
...
@@ -369,6 +369,9 @@ FEATURES = {
# Enable LTI Provider feature.
'ENABLE_LTI_PROVIDER'
:
False
,
# Enable reporting metrics to DataDog
'ENABLE_DATADOG_REPORTING'
:
False
,
}
# Ignore static asset files on import which match this pattern
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment