Guest User

Untitled

a guest
Feb 19th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. class Test < Application
  2.  
  3. # ...and remember, everything returned from an action
  4. # goes to the client...
  5. def index
  6. if true
  7. return redirect url(:action => 'foo')
  8. else
  9. 'no go'
  10. end
  11. end
  12.  
  13. def foo
  14. 'hi'
  15. end
  16.  
  17. end
Add Comment
Please, Sign In to add comment