Files
nairobi/app/helpers/follows_helper.rb
2019-03-15 09:26:49 +01:00

14 lines
370 B
Ruby

module FollowsHelper
def follow_text(followable)
entity = followable.class.name.underscore
t("shared.follow_entity", entity: t("activerecord.models.#{entity}.one").downcase)
end
def unfollow_text(followable)
entity = followable.class.name.underscore
t("shared.unfollow_entity", entity: t("activerecord.models.#{entity}.one").downcase)
end
end