Commit 0ddc82a2 by Bertrand Marron

Add grades API

parent 1c52fd21
...@@ -1928,6 +1928,9 @@ INSTALLED_APPS = ( ...@@ -1928,6 +1928,9 @@ INSTALLED_APPS = (
# Reverse proxy # Reverse proxy
'x_forwarded_for', 'x_forwarded_for',
# Grades API
'grades_api',
) )
######################### CSRF ######################################### ######################### CSRF #########################################
......
...@@ -80,6 +80,8 @@ urlpatterns = ( ...@@ -80,6 +80,8 @@ urlpatterns = (
# Course content API # Course content API
url(r'^api/course_structure/', include('course_structure_api.urls', namespace='course_structure_api')), url(r'^api/course_structure/', include('course_structure_api.urls', namespace='course_structure_api')),
url('^api/grades_api/', include('grades_api.urls', namespace='grades_api')),
# User API endpoints # User API endpoints
url(r'^api/user/', include('openedx.core.djangoapps.user_api.urls')), url(r'^api/user/', include('openedx.core.djangoapps.user_api.urls')),
......
...@@ -58,3 +58,6 @@ git+https://github.com/edx/ecommerce-api-client.git@1.0.0#egg=ecommerce-api-clie ...@@ -58,3 +58,6 @@ git+https://github.com/edx/ecommerce-api-client.git@1.0.0#egg=ecommerce-api-clie
# Third Party XBlocks # Third Party XBlocks
-e git+https://github.com/mitodl/edx-sga@172a90fd2738f8142c10478356b2d9ed3e55334a#egg=edx-sga -e git+https://github.com/mitodl/edx-sga@172a90fd2738f8142c10478356b2d9ed3e55334a#egg=edx-sga
-e git+https://github.com/open-craft/xblock-poll@v1.0#egg=xblock-poll -e git+https://github.com/open-craft/xblock-poll@v1.0#egg=xblock-poll
# IONISx:
-e git+https://github.com/IONISx/edx-grades-api@v1.0.0#egg=edx-grades-api
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment