gravatar_url returns the users' profile_picture
This commit is contained in:
parent
cf3933271a
commit
501f039e7f
|
@ -60,6 +60,7 @@ module ApplicationHelper
|
||||||
end
|
end
|
||||||
|
|
||||||
def gravatar_url(user)
|
def gravatar_url(user)
|
||||||
|
return user.profile_picture.url
|
||||||
# return '/cage.png'
|
# return '/cage.png'
|
||||||
return '//www.gravatar.com/avatar' if user.nil?
|
return '//www.gravatar.com/avatar' if user.nil?
|
||||||
return "//www.gravatar.com/avatar/#{Digest::MD5.hexdigest(user)}" if user.is_a? String
|
return "//www.gravatar.com/avatar/#{Digest::MD5.hexdigest(user)}" if user.is_a? String
|
||||||
|
|
Loading…
Reference in New Issue