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
a2cc679b
Commit
a2cc679b
authored
Nov 02, 2017
by
John Eskew
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove usage of default_app_label from ccxcon.
parent
c866b526
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
6 additions
and
8 deletions
+6
-8
cms/envs/aws.py
+1
-1
cms/envs/test.py
+1
-1
cms/envs/yaml_config.py
+1
-1
lms/envs/aws.py
+1
-1
lms/envs/test.py
+1
-1
lms/envs/yaml_config.py
+1
-1
openedx/core/djangoapps/ccxcon/__init__.py
+0
-2
No files found.
cms/envs/aws.py
View file @
a2cc679b
...
...
@@ -503,7 +503,7 @@ JWT_AUTH.update(ENV_TOKENS.get('JWT_AUTH', {}))
######################## CUSTOM COURSES for EDX CONNECTOR ######################
if
FEATURES
.
get
(
'CUSTOM_COURSES_EDX'
):
INSTALLED_APPS
.
append
(
'openedx.core.djangoapps.ccxcon'
)
INSTALLED_APPS
.
append
(
'openedx.core.djangoapps.ccxcon
.apps.CCXConnectorConfig
'
)
# Partner support link for CMS footer
PARTNER_SUPPORT_EMAIL
=
ENV_TOKENS
.
get
(
'PARTNER_SUPPORT_EMAIL'
,
PARTNER_SUPPORT_EMAIL
)
...
...
cms/envs/test.py
View file @
a2cc679b
...
...
@@ -331,7 +331,7 @@ FEATURES['ENABLE_TEAMS'] = True
SECRET_KEY
=
'85920908f28904ed733fe576320db18cabd7b6cd'
######### custom courses #########
INSTALLED_APPS
.
append
(
'openedx.core.djangoapps.ccxcon'
)
INSTALLED_APPS
.
append
(
'openedx.core.djangoapps.ccxcon
.apps.CCXConnectorConfig
'
)
FEATURES
[
'CUSTOM_COURSES_EDX'
]
=
True
# API access management -- needed for simple-history to run.
...
...
cms/envs/yaml_config.py
View file @
a2cc679b
...
...
@@ -259,7 +259,7 @@ BROKER_USE_SSL = ENV_TOKENS.get('CELERY_BROKER_USE_SSL', False)
######################## CUSTOM COURSES for EDX CONNECTOR ######################
if
FEATURES
.
get
(
'CUSTOM_COURSES_EDX'
):
INSTALLED_APPS
.
append
(
'openedx.core.djangoapps.ccxcon'
)
INSTALLED_APPS
.
append
(
'openedx.core.djangoapps.ccxcon
.apps.CCXConnectorConfig
'
)
########################## Extra middleware classes #######################
...
...
lms/envs/aws.py
View file @
a2cc679b
...
...
@@ -823,7 +823,7 @@ ECOMMERCE_SERVICE_WORKER_USERNAME = ENV_TOKENS.get(
##### Custom Courses for EdX #####
if
FEATURES
.
get
(
'CUSTOM_COURSES_EDX'
):
INSTALLED_APPS
+=
[
'lms.djangoapps.ccx'
,
'openedx.core.djangoapps.ccxcon'
]
INSTALLED_APPS
+=
[
'lms.djangoapps.ccx'
,
'openedx.core.djangoapps.ccxcon
.apps.CCXConnectorConfig
'
]
MODULESTORE_FIELD_OVERRIDE_PROVIDERS
+=
(
'lms.djangoapps.ccx.overrides.CustomCoursesForEdxOverrideProvider'
,
)
...
...
lms/envs/test.py
View file @
a2cc679b
...
...
@@ -552,7 +552,7 @@ FACEBOOK_APP_ID = "Test"
FACEBOOK_API_VERSION
=
"v2.8"
######### custom courses #########
INSTALLED_APPS
+=
[
'lms.djangoapps.ccx'
,
'openedx.core.djangoapps.ccxcon'
]
INSTALLED_APPS
+=
[
'lms.djangoapps.ccx'
,
'openedx.core.djangoapps.ccxcon
.apps.CCXConnectorConfig
'
]
FEATURES
[
'CUSTOM_COURSES_EDX'
]
=
True
# Set dummy values for profile image settings.
...
...
lms/envs/yaml_config.py
View file @
a2cc679b
...
...
@@ -306,7 +306,7 @@ GRADES_DOWNLOAD_ROUTING_KEY = HIGH_MEM_QUEUE
##### Custom Courses for EdX #####
if
FEATURES
.
get
(
'CUSTOM_COURSES_EDX'
):
INSTALLED_APPS
+=
[
'lms.djangoapps.ccx'
,
'openedx.core.djangoapps.ccxcon'
]
INSTALLED_APPS
+=
[
'lms.djangoapps.ccx'
,
'openedx.core.djangoapps.ccxcon
.apps.CCXConnectorConfig
'
]
MODULESTORE_FIELD_OVERRIDE_PROVIDERS
+=
(
'lms.djangoapps.ccx.overrides.CustomCoursesForEdxOverrideProvider'
,
)
...
...
openedx/core/djangoapps/ccxcon/__init__.py
View file @
a2cc679b
...
...
@@ -6,5 +6,3 @@ that is used to interact with the CCX and their master courses.
The ccxcon app needs to be placed in `openedx.core.djangoapps`
because it will be used both in CMS and LMS.
"""
default_app_config
=
'openedx.core.djangoapps.ccxcon.apps.CCXConnectorConfig'
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