20 lines
1.1 KiB
Python
20 lines
1.1 KiB
Python
|
|
from django.urls import path
|
||
|
|
from . import views
|
||
|
|
|
||
|
|
urlpatterns = [
|
||
|
|
path('search/', views.podcast_search, name='podcast_search'),
|
||
|
|
path('feeds/', views.feed_list, name='podcast_feed_list'),
|
||
|
|
path('feeds/add/', views.add_feed, name='podcast_add_feed'),
|
||
|
|
path('feeds/import/', views.import_opml, name='podcast_import_opml'),
|
||
|
|
path('feeds/refresh/', views.refresh_feed_now, name='podcast_refresh_feed'),
|
||
|
|
path('feeds/<int:pk>/remove/', views.remove_feed, name='podcast_remove_feed'),
|
||
|
|
path('feeds/<int:pk>/episodes/', views.feed_episodes, name='podcast_feed_episodes'),
|
||
|
|
path('queue/', views.queue_get, name='podcast_queue_get'),
|
||
|
|
path('queue/add/', views.queue_add, name='podcast_queue_add'),
|
||
|
|
path('queue/remove/', views.queue_remove, name='podcast_queue_remove'),
|
||
|
|
path('queue/reorder/', views.queue_reorder, name='podcast_queue_reorder'),
|
||
|
|
path('progress/save/', views.save_progress, name='podcast_save_progress'),
|
||
|
|
path('progress/mark-played/', views.mark_played, name='podcast_mark_played'),
|
||
|
|
path('inbox/', views.inbox, name='podcast_inbox'),
|
||
|
|
]
|