Working fetch feeds and parser, process raw and error urls

This commit is contained in:
Luciano Gervasoni
2025-03-18 14:49:12 +01:00
parent 7d7bce1e72
commit fb4b30f05e
26 changed files with 270 additions and 364 deletions

View File

@@ -1,6 +1,7 @@
from django.urls import path
from .views import trigger_task
from .views import trigger_task, link_list
urlpatterns = [
path('links', link_list, name='link_list'),
path('<str:task>', trigger_task, name='trigger_task'),
]