This commit is contained in:
danis
2023-09-19 09:37:00 +02:00
parent e56436db3a
commit 8f9d7e4a85

View File

@@ -691,16 +691,4 @@ export default class API {
};
}
public static getUserPlaayHistory(): Query<SongHistoryItem[]> {
return {
key: ['history'],
exec: () =>
API.fetch(
{
route: '/history',
},
{ handler: ListHandler(SongHistoryItemHandler) }
),
};
}
}