diff options
author | 2020-10-12 01:03:42 +0100 | |
---|---|---|
committer | 2020-10-12 01:03:42 +0100 | |
commit | 479624eab5074427345ea46e226acd58807d285b (patch) | |
tree | 7698014669a5d55da8f1f899aa56f6bee3ea3dc0 /pydis_site/apps/home/urls.py | |
parent | Update default picture to community logo (diff) |
Add unit test for timeline page
Diffstat (limited to 'pydis_site/apps/home/urls.py')
-rw-r--r-- | pydis_site/apps/home/urls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_site/apps/home/urls.py b/pydis_site/apps/home/urls.py index cf0c7457..14d118f8 100644 --- a/pydis_site/apps/home/urls.py +++ b/pydis_site/apps/home/urls.py @@ -38,5 +38,5 @@ urlpatterns = [ path('admin/', admin.site.urls), path('notifications/', include('django_nyt.urls')), - path('timeline/', timeline), + path('timeline/', timeline, name="timeline"), ] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) |