Create placeholder django apps for credentials
ECOM-3057
This commit is contained in:
@@ -840,6 +840,8 @@ INSTALLED_APPS = (
|
||||
# Microsite configuration application
|
||||
'microsite_configuration',
|
||||
|
||||
# Credentials support
|
||||
'openedx.core.djangoapps.credentials',
|
||||
)
|
||||
|
||||
|
||||
|
||||
@@ -1930,6 +1930,9 @@ INSTALLED_APPS = (
|
||||
'openedx.core.djangoapps.self_paced',
|
||||
|
||||
'sorl.thumbnail',
|
||||
|
||||
# Credentials support
|
||||
'openedx.core.djangoapps.credentials',
|
||||
)
|
||||
|
||||
# Migrations which are not in the standard module "migrations"
|
||||
|
||||
6
openedx/core/djangoapps/credentials/__init__.py
Normal file
6
openedx/core/djangoapps/credentials/__init__.py
Normal file
@@ -0,0 +1,6 @@
|
||||
"""
|
||||
edX Platform support for credentials.
|
||||
|
||||
This package will be used as a wrapper for interacting with the credentials
|
||||
service to provide support for learners and authors to use features involved.
|
||||
"""
|
||||
3
openedx/core/djangoapps/credentials/api/__init__.py
Normal file
3
openedx/core/djangoapps/credentials/api/__init__.py
Normal file
@@ -0,0 +1,3 @@
|
||||
"""
|
||||
APIs for the credentials support.
|
||||
"""
|
||||
3
openedx/core/djangoapps/credentials/api/urls.py
Normal file
3
openedx/core/djangoapps/credentials/api/urls.py
Normal file
@@ -0,0 +1,3 @@
|
||||
"""
|
||||
URLs for credential support views.
|
||||
"""
|
||||
3
openedx/core/djangoapps/credentials/api/v1/views.py
Normal file
3
openedx/core/djangoapps/credentials/api/v1/views.py
Normal file
@@ -0,0 +1,3 @@
|
||||
"""
|
||||
Credentials API views (v1).
|
||||
"""
|
||||
3
openedx/core/djangoapps/credentials/models.py
Normal file
3
openedx/core/djangoapps/credentials/models.py
Normal file
@@ -0,0 +1,3 @@
|
||||
"""
|
||||
Models for credentials support for the LMS and Studio.
|
||||
"""
|
||||
3
openedx/core/djangoapps/credentials/tasks.py
Normal file
3
openedx/core/djangoapps/credentials/tasks.py
Normal file
@@ -0,0 +1,3 @@
|
||||
"""
|
||||
Celery tasks for credentials support views.
|
||||
"""
|
||||
3
openedx/core/djangoapps/credentials/urls.py
Normal file
3
openedx/core/djangoapps/credentials/urls.py
Normal file
@@ -0,0 +1,3 @@
|
||||
"""
|
||||
URLs for the credentials support in LMS and Studio.
|
||||
"""
|
||||
Reference in New Issue
Block a user