export class PlaylistService {
  constructor(private http: Http) {}

  enablePlaylist(playlist: Playlist) {
    this.http.put(`/playlists/${playlist.id}/enable`, {}).subscribe();