diaspora/app/helpers/users_helper.rb
2012-11-21 18:26:17 -02:00

9 lines
205 B
Ruby

module UsersHelper
def owner_image_tag(size=nil)
person_image_tag(current_user.person, size)
end
def owner_image_link
person_image_link(current_user.person, :size => :thumb_small)
end
end