Implemented item view

This commit is contained in:
2020-11-26 19:48:43 +01:00
parent 6a63392b09
commit 60f026b6d9
8 changed files with 103 additions and 29 deletions

View File

@@ -131,8 +131,8 @@ export default new class {
return this._performApiCall('get', `/lists/${id}`, null, true, 200);
}
getTrackFromList(listid, trackid) {
return this._performApiCall('get', `/lists/${listid}/${trackid}`, null, true, 200);
getItem(id) {
return this._performApiCall('get', `/items/${id}`, null, true, 200);
}
}