Created
June 15, 2015 18:25
-
-
Save joshdvir/5f9465ea0fe67e0ebbaf to your computer and use it in GitHub Desktop.
This file contains 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
if user_signed_in? | |
case current_user.provider | |
when "facebook" | |
facebook_profile_image_path("#{current_user.uid}.jpg", :default_image => "Users_iaysut.png") | |
when "twitter" | |
twitter_name_profile_image_path("#{current_user.uid}.jpg", :default_image => "Users_iaysut.png") | |
else | |
gravatar_profile_image_path(current_user.email, :default_image => "Users_iaysut.png") | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment