[tasks] Add weigh-in task importer
All checks were successful
build & deploy / test (push) Successful in 1m48s
build & deploy / build-and-deploy (push) Successful in 33s

This commit is contained in:
2026-05-21 09:09:41 -04:00
parent 2b88f89794
commit 9d3f7f434f
9 changed files with 307 additions and 0 deletions

View File

@ -57,6 +57,11 @@ urlpatterns = [
views.KoReaderImportCreateView.as_view(),
name="koreader-file-upload",
),
path(
"upload/scale/",
views.ScaleCSVImportCreateView.as_view(),
name="scale-csv-upload",
),
path(
"lastfm-import/",
views.lastfm_import,
@ -116,6 +121,11 @@ urlpatterns = [
views.ScrobbleRetroarchImportDetailView.as_view(),
name="retroarch-import-detail",
),
path(
"imports/scale/<slug:slug>/",
views.ScrobbleScaleCSVImportDetailView.as_view(),
name="scale-csv-import-detail",
),
path(
"long-plays/",
views.ScrobbleLongPlaysView.as_view(),