Created
February 27, 2019 19:03
-
-
Save staycreativedesign/515f32e92d2ab4dc234e7a9df5772cdb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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