Update HTML

This commit is contained in:
Joakim Hellsén 2024-01-31 03:59:25 +01:00
commit e24413603c
4 changed files with 69 additions and 14 deletions

View file

@ -2,7 +2,7 @@
from django.urls import path
from feeds.views import APIView, FeedsView, IndexView, add_feeds
from feeds.views import APIView, DonateView, FeedsView, IndexView, add_feeds
app_name = "feeds"
@ -15,4 +15,6 @@ urlpatterns = [
path("add", add_feeds, name="add"),
# /api
path("api", APIView.as_view(), name="api"),
# /donate
path("donate", DonateView.as_view(), name="donate"),
]