Guest User

Untitled

a guest
Nov 19th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. class SomethingController
  2.  
  3. def update
  4. ...
  5. if (obj.save)
  6. update_success(obj)
  7. else
  8. update_failure(obj)
  9. end
  10. end
  11.  
  12. def update_success(obj)
  13. redirect_to something_path
  14. end
  15.  
  16. def update_failure(obj)
  17. redirect_to edit_something_path(obj)
  18. end
Add Comment
Please, Sign In to add comment