aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/apps/home/urls.py
diff options
context:
space:
mode:
authorGravatar Derek <[email protected]>2020-09-02 22:17:44 -0400
committerGravatar Derek <[email protected]>2020-09-02 22:17:44 -0400
commit1b07a0021ad61f21f4414e8bb9045d605ce87f64 (patch)
treef2ee0279b535b132b128dda5ba8e12aae1988523 /pydis_site/apps/home/urls.py
parentRevert pull request #348 (diff)
add timeline view
add timeline route
Diffstat (limited to 'pydis_site/apps/home/urls.py')
-rw-r--r--pydis_site/apps/home/urls.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pydis_site/apps/home/urls.py b/pydis_site/apps/home/urls.py
index 61e87a39..cf0c7457 100644
--- a/pydis_site/apps/home/urls.py
+++ b/pydis_site/apps/home/urls.py
@@ -6,7 +6,7 @@ from django.contrib.messages import ERROR
from django.urls import include, path
from pydis_site.utils.views import MessageRedirectView
-from .views import AccountDeleteView, AccountSettingsView, HomeView
+from .views import AccountDeleteView, AccountSettingsView, HomeView, timeline
app_name = 'home'
urlpatterns = [
@@ -38,4 +38,5 @@ urlpatterns = [
path('admin/', admin.site.urls),
path('notifications/', include('django_nyt.urls')),
+ path('timeline/', timeline),
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)