Skip to content

Instantly share code, notes, and snippets.

@staycreativedesign
Created February 27, 2019 19:03
Show Gist options
  • Save staycreativedesign/515f32e92d2ab4dc234e7a9df5772cdb to your computer and use it in GitHub Desktop.
Save staycreativedesign/515f32e92d2ab4dc234e7a9df5772cdb to your computer and use it in GitHub Desktop.
module ApplicationHelper
def login_logout
if current_user.role == 'none'
content_tag :li do
link_to "Login", login_path
end
else
content_tag :li do
link_to "logout", logout_path
end
content_tag :li do
link_to "dashboard", membership_path(current_user)
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment