Split scrobble endpoints up

This commit is contained in:
2023-01-05 11:10:10 -05:00
parent fe47d916e9
commit 410fe36d9a
3 changed files with 85 additions and 85 deletions

View File

@ -4,5 +4,6 @@ from scrobbles import views
app_name = 'scrobbles'
urlpatterns = [
path('', views.scrobble_list, name='scrobble-list'),
path('', views.scrobble_endpoint, name='scrobble-list'),
path('jellyfin/', views.jellyfin_websocket, name='jellyfin-websocket'),
]