diaspora/app/helpers/reshares_helper.rb
2011-07-22 17:43:05 -07:00

9 lines
243 B
Ruby

module ResharesHelper
def reshare_error_message(reshare)
if @reshare.errors[:root_guid].present?
escape_javascript(@reshare.errors[:root_guid].first)
else
escape_javascript(t('reshares.create.failure'))
end
end
end