Challenge Solution: Configure Views
Explore how to configure Rails views for user authentication by mapping Devise routes to edit account, sign up, sign in, and sign out actions. Understand how these routes correspond to controller actions and HTTP methods in your Rails application.
We'll cover the following...
We'll cover the following...
Solution
//= link_tree ../images //= link_directory ../javascripts .js //= link_directory ../stylesheets .css
Explanation
app/views/layouts/application.html.erb
Line 19: Edit Account –– Running rails routes gives us the ...