Method: ApplicationHelper#user_face

Defined in:
app/helpers/application_helper.rb

#user_face(user) ⇒ Object



93
94
95
96
97
# File 'app/helpers/application_helper.rb', line 93

def user_face(user)
  return nil unless user.has_face?
  image = %{<img class="user_face" src="/image/face/#{user.id}" height="#{user.face.height}" width="#{user.face.width}" />}
  link_user(user, image) 
end