Merge pull request #18917 from edx/arch/user-authn-app

Consolidate user login and authentication code
This commit is contained in:
Nimisha Asthagiri
2018-09-15 10:00:51 -04:00
committed by GitHub
50 changed files with 2421 additions and 2416 deletions

View File

@@ -32,6 +32,7 @@ from lms.envs.test import (
COMPREHENSIVE_THEME_DIRS,
JWT_AUTH,
REGISTRATION_EXTRA_FIELDS,
ECOMMERCE_API_URL,
)
# Allow all hosts during tests, we use a lot of different ones all over the codebase.

View File

@@ -33,6 +33,7 @@ COURSELIKE_KEY_PATTERN = r'(?P<course_key_string>({}|{}))'.format(
LIBRARY_KEY_PATTERN = r'(?P<library_key_string>library-v1:[^/+]+\+[^/+]+)'
urlpatterns = [
url(r'', include('openedx.core.djangoapps.user_authn.urls_common')),
url(r'', include('student.urls')),
url(r'^transcripts/upload$', contentstore.views.upload_transcripts, name='upload_transcripts'),
url(r'^transcripts/download$', contentstore.views.download_transcripts, name='download_transcripts'),