Skip to content

Instantly share code, notes, and snippets.

@svlasov
Last active December 12, 2015 09:19
Show Gist options
  • Save svlasov/4750990 to your computer and use it in GitHub Desktop.
Save svlasov/4750990 to your computer and use it in GitHub Desktop.
Devise menu items
<% if user_signed_in? %>
<li>
<%= link_to('Logout', destroy_user_session_path, :method => :delete) %>
</li>
<% else %>
<li>
<%= link_to('Login', new_user_session_path) %>
</li>
<% end %>
<% if user_signed_in? %>
<li>
<%= link_to('Edit registration', edit_user_registration_path) %>
</li>
<% else %>
<li>
<%= link_to('Register', new_user_registration_path) %>
</li>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment