diaspora/app/helpers/users_helper.rb
2012-06-04 15:19:05 -07:00

13 lines
258 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
def mine?(post)
current_user.owns? post
end
end