Skip to content

Instantly share code, notes, and snippets.

@joshdvir
Created June 15, 2015 18:25
Show Gist options
  • Save joshdvir/5f9465ea0fe67e0ebbaf to your computer and use it in GitHub Desktop.
Save joshdvir/5f9465ea0fe67e0ebbaf to your computer and use it in GitHub Desktop.
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