Allow config without localsettings. Basic docker conf. Remove stale files.
[cas.git] / src / accounts / urls.py
1 from django.urls import path
2 from . import views
3
4
5 urlpatterns = [
6     path('', views.ProfileView.as_view(), name='accounts_profile'),
7 ]