Update HTML
This commit is contained in:
parent
a828350052
commit
e24413603c
4 changed files with 69 additions and 14 deletions
|
|
@ -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"),
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue