[trails] Add auto GPX and FIT file importing
All checks were successful
build & deploy / test (push) Successful in 1m51s
build & deploy / build-and-deploy (push) Successful in 32s

This commit is contained in:
2026-05-21 10:52:23 -04:00
parent 08152de086
commit cb50de13c0
17 changed files with 4012 additions and 8 deletions

View File

@ -62,6 +62,11 @@ urlpatterns = [
views.ScaleCSVImportCreateView.as_view(),
name="scale-csv-upload",
),
path(
"upload/trail-gpx/",
views.TrailGPXImportCreateView.as_view(),
name="trail-gpx-upload",
),
path(
"lastfm-import/",
views.lastfm_import,
@ -126,6 +131,11 @@ urlpatterns = [
views.ScrobbleScaleCSVImportDetailView.as_view(),
name="scale-csv-import-detail",
),
path(
"imports/trail-gpx/<slug:slug>/",
views.ScrobbleTrailGPXImportDetailView.as_view(),
name="trail-gpx-import-detail",
),
path(
"long-plays/",
views.ScrobbleLongPlaysView.as_view(),