Guest User

Untitled

a guest
Aug 19th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. How can I use an application decorator for site wide view logic?
  2. <% if signed_in? %>
  3. <li><%= link_to "Sign out", signout_path, :method => :delete %></li>
  4. <% else %>
  5. <li><%= link_to "Sign in", signin_path %></li>
  6. <% end %>
Add Comment
Please, Sign In to add comment