Guest User

Untitled

a guest
Dec 15th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. resources :clients
  2.  
  3. def update
  4. @client = Client.find(params[:id])
  5.  
  6. if @client.update(client_params)
  7. redirect_to clients_path
  8. else
  9. render 'edit'
  10. end # end if
  11. end # end update
Add Comment
Please, Sign In to add comment