You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asciinema.org/lib/oauth_helper.rb

12 lines
220 B
Ruby

class OauthHelper
def self.get_avatar_url(auth)
if auth["provider"] == "twitter"
auth["info"]["image"]
elsif auth["provider"] == "github"
auth["extra"]["raw_info"]["avatar_url"]
end
end
end