Answers for "rails check route"

2

rails get current path

request.url
# => "http://localhost:3000/lists/7/items"
request.path
# => "/lists/7/items"
Posted by: Guest on April-14-2020
0

rails all path

# in terminal:
rails routes # => List all your routes
# If you want to select
rails routes | grep yourModelName..
Posted by: Guest on January-19-2021

Browse Popular Code Answers by Language