Reputation: 67
Hopefully someone can help me with this, my app is working fine.
I can login register and use everything the way it's meant to except. When I open the app and login in I can view the main page of the site.
But if I go to the devise sign in or register page and then click the link for the main page before signing in it just comes up with an error saying
Unknown action
The action 'sessions' could not be found for DeviseController
Upvotes: 0
Views: 102
Reputation: 17834
Change your link to this
<%= link_to "Track", urls_welcome_path %>
Upvotes: 2