1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
mastodon/lib/paperclip/url_generator_extensions.rb

12 lines
291 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Paperclip
module UrlGeneratorExtensions
def for_as_default(style_name)
attachment_options[:interpolator].interpolate(default_url, @attachment, style_name)
end
end
end
Paperclip::UrlGenerator.prepend(Paperclip::UrlGeneratorExtensions)