Skip to content

Instantly share code, notes, and snippets.

@mattslay
Created April 17, 2012 19:18
Show Gist options
  • Save mattslay/2408397 to your computer and use it in GitHub Desktop.
Save mattslay/2408397 to your computer and use it in GitHub Desktop.
Devise-Sign-In-Sign-Out-Links
<% if user_signed_in? %>
<%= link_to 'Sign out', destroy_user_session_path, :method => :delete %>
<% else %>
<%= link_to 'Sign in', new_user_session_path %>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment