Provide a DELETE endpoint that uses Spotify connectivity to remove tracks from one of logged in users playlists using the Spotify API endpoint: DELETEhttps://api.spotify.com/v1/playlists/{playlistId}/tracks
Endpoint should also remove database entries in the skipped_tracks table for the given tracks and playlist.
Provide a
DELETE
endpoint that uses Spotify connectivity to remove tracks from one of logged in users playlists using the Spotify API endpoint:DELETE
https://api.spotify.com/v1/playlists/{playlistId}/tracks
Endpoint should also remove database entries in the skipped_tracks table for the given tracks and playlist.
Add unit tests for services and controllers.