[trails] Add auto GPX and FIT file importing
This commit is contained in:
@ -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(),
|
||||
|
||||
Reference in New Issue
Block a user