diff --git a/front/API.ts b/front/API.ts index 8e53b58..73cb7f5 100644 --- a/front/API.ts +++ b/front/API.ts @@ -691,16 +691,4 @@ export default class API { }; } - public static getUserPlaayHistory(): Query { - return { - key: ['history'], - exec: () => - API.fetch( - { - route: '/history', - }, - { handler: ListHandler(SongHistoryItemHandler) } - ), - }; - } }