Handle save error in API playlists/update

This commit is contained in:
Thibault Jouan
2015-05-04 02:14:37 +00:00
parent 5f993e4bd3
commit 223a6e7a85
2 changed files with 39 additions and 11 deletions

View File

@@ -19,8 +19,11 @@ module API
end
def update
@playlist.update playlist_params
head :no_content
if @playlist.update playlist_params
head :no_content
else
render json: @playlist.errors, status: :unprocessable_entity
end
end
def destroy