Create placeholder django apps for credentials

ECOM-3057
This commit is contained in:
Ahsan Ulhaq
2015-12-02 16:32:36 +05:00
parent 0b8145ee75
commit b11e312d2c
12 changed files with 29 additions and 0 deletions

View File

@@ -840,6 +840,8 @@ INSTALLED_APPS = (
# Microsite configuration application
'microsite_configuration',
# Credentials support
'openedx.core.djangoapps.credentials',
)

View File

@@ -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"

View 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.
"""

View File

@@ -0,0 +1,3 @@
"""
APIs for the credentials support.
"""

View File

@@ -0,0 +1,3 @@
"""
URLs for credential support views.
"""

View File

@@ -0,0 +1,3 @@
"""
Credentials API views (v1).
"""

View File

@@ -0,0 +1,3 @@
"""
Models for credentials support for the LMS and Studio.
"""

View File

@@ -0,0 +1,3 @@
"""
Celery tasks for credentials support views.
"""

View File

@@ -0,0 +1,3 @@
"""
URLs for the credentials support in LMS and Studio.
"""