Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. ...
  2.  
  3. #routes.rb
  4.  
  5. get '/users/:user_id/account/:id' => 'foo#bar', as: 'foo_bar'
  6.  
  7. ...
  8.  
  9. ...
  10.  
  11. #foo_controller.rb
  12.  
  13. def bar
  14. flash[:warning] = "You have found Bar!."
  15. #return redirect_to x <--- still nothing!
  16. end
  17.  
  18. ...
  19.  
  20. <%= link_to 'Get', foo_bar_path, class: "input-group-button button", method: :get %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement