19 lines
828 B
Ruby
19 lines
828 B
Ruby
module StreamElementHelper
|
|
def block_user_control(author)
|
|
if user_signed_in?
|
|
link_to image_tag('deletelabel.png'), blocks_path(:block => {:person_id => author.id}),
|
|
:class => 'block_user delete',
|
|
:confirm => t('are_you_sure'),
|
|
:title => 'block user',
|
|
:method => :post
|
|
end
|
|
end
|
|
|
|
def delete_or_hide_button(post)
|
|
if user_signed_in? && current_user.owns?(post)
|
|
link_to image_tag('deletelabel.png'), post_path(post), :confirm => t('are_you_sure'), :method => :delete, :remote => true, :class => "delete remove_post", :title => t('delete')
|
|
else
|
|
link_to image_tag('deletelabel.png'), share_visibility_path(:id => "42", :post_id => post.id), :method => :put, :remote => true, :class => "delete remove_post vis_hide", :title => t('.hide_and_mute')
|
|
end
|
|
end
|
|
end
|