Method: Ronnie::Client::Playlists#update_playlist
- Defined in:
- lib/ronnie/client/playlists.rb
#update_playlist(playlist_id, name, description, options = {}) ⇒ Object
Update Playlist
47 48 49 50 51 52 53 54 55 |
# File 'lib/ronnie/client/playlists.rb', line 47 def update_playlist(playlist_id, name, description, ={}) = { playlist: playlist_id, name: name, description: description, } post('setPlaylistFields', .merge!()) end |