docbrown/app/helpers/social_image_helper.rb
Joshua Wehner 4e17649e15
Remove generated social images, except for articles#show (#18118)
* Prefer main_social_image (except on articles#show)

See https://github.com/forem/forem-internal-eng/issues/485

* Cleanup social media helpers no longer in use
2022-07-18 12:29:21 +02:00

5 lines
140 B
Ruby

module SocialImageHelper
def article_social_image_url(article, **options)
Articles::SocialImage.new(article, **options).url
end
end