You can now upload .opml files
This commit is contained in:
parent
e24413603c
commit
2c60f0aab7
7 changed files with 417 additions and 201 deletions
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
from django.urls import path
|
||||
|
||||
from feeds.views import APIView, DonateView, FeedsView, IndexView, add_feeds
|
||||
from feeds.views import APIView, DonateView, FeedsView, IndexView, add_feeds, upload_opml
|
||||
|
||||
app_name = "feeds"
|
||||
|
||||
|
|
@ -17,4 +17,6 @@ urlpatterns = [
|
|||
path("api", APIView.as_view(), name="api"),
|
||||
# /donate
|
||||
path("donate", DonateView.as_view(), name="donate"),
|
||||
# /upload_opml
|
||||
path("upload_opml", upload_opml, name="upload_opml"),
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue