15 lines
450 B
Python
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'),
|
|
]
|