Add /feeds

This commit is contained in:
Joakim Hellsén 2024-01-30 03:29:56 +01:00
commit 85ae466d3b
4 changed files with 54 additions and 8 deletions

View file

@ -2,8 +2,13 @@
from django.urls import path
from feeds.views import IndexView
from feeds.views import FeedsView, IndexView
app_name = "feeds"
urlpatterns = [
# /
path("", IndexView.as_view(), name="index"),
# /feeds
path("feeds", FeedsView.as_view(), name="feeds"),
]