Add exporting and importing scrobbles

This commit is contained in:
2023-02-04 17:08:01 -05:00
parent 4c434aeb7c
commit 9d303b1b94
9 changed files with 228 additions and 26 deletions

View File

@ -8,10 +8,11 @@ urlpatterns = [
path('finish/<slug:uuid>', views.scrobble_finish, name='finish'),
path('cancel/<slug:uuid>', views.scrobble_cancel, name='cancel'),
path(
'audioscrobbler-file-upload/',
views.import_audioscrobbler_file,
'upload/',
views.AudioScrobblerImportCreateView.as_view(),
name='audioscrobbler-file-upload',
),
path('jellyfin/', views.jellyfin_websocket, name='jellyfin-websocket'),
path('mopidy/', views.mopidy_websocket, name='mopidy-websocket'),
path('export/', views.export, name='export'),
]