[tasks] Clean up todoist scrobbling
All checks were successful
build & deploy / test (push) Successful in 1m47s
build & deploy / deploy (push) Successful in 21s

This commit is contained in:
2026-03-31 18:28:49 -04:00
parent 01aa0cba76
commit 2dbd752609
4 changed files with 147 additions and 96 deletions

View File

@ -1,6 +1,6 @@
from django.urls import path
from scrobbles import views
from tasks.webhooks import EmacsWebhookView, todoist_webhook
from tasks.webhooks import EmacsWebhookView, TodoistWebhookView
app_name = "scrobbles"
@ -82,7 +82,7 @@ urlpatterns = [
views.MopidyWebhookView.as_view(),
name="mopidy-webhook",
),
path("webhook/todoist/", todoist_webhook, name="todoist-webhook"),
path("webhook/todoist/", TodoistWebhookView.as_view(), name="todoist-webhook"),
path("webhook/emacs/", EmacsWebhookView.as_view(), name="emacs_webhook"),
path("export/", views.export, name="export"),
path(