Search⌘ K

Basic Challenge: Configure Views

Understand how to customize your Rails app views to show different navigation links depending on whether a user is signed in or signed out. This lesson guides you in modifying application layouts to include links for editing accounts, signing in, signing out, and signing up, using Devise routes and conditional Ruby code.

We'll cover the following...

Problem statement

With your User model set up, you need to make some changes to your views and actions to serve up different things based on whether the user is currently signed-in or not.

You are required to make changes to the ...