Files
edx-platform/lms/djangoapps/student_account/urls.py
2017-11-29 09:44:10 -05:00

15 lines
450 B
Python

from django.conf import settings
from django.conf.urls import url
from student_account import views
urlpatterns = [
url(r'^finish_auth$', views.finish_auth, name='finish_auth'),
url(r'^settings$', views.account_settings, name='account_settings'),
]
if settings.FEATURES.get('ENABLE_COMBINED_LOGIN_REGISTRATION'):
urlpatterns += [
url(r'^password$', views.password_change_request_handler, name='password_change_request'),
]