[tasks] Revert webhook for Todoist
All checks were successful
build & deploy / test (push) Successful in 1m49s
build & deploy / deploy (push) Successful in 21s

This commit is contained in:
2026-03-31 18:01:59 -04:00
parent c5b7e57005
commit 01aa0cba76
2 changed files with 101 additions and 94 deletions

View File

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