2020-03-27 01:09:16 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Paperclip
|
|
|
|
module UrlGeneratorExtensions
|
2020-09-11 23:16:29 +10:00
|
|
|
def for_as_default(style_name)
|
|
|
|
attachment_options[:interpolator].interpolate(default_url, @attachment, style_name)
|
|
|
|
end
|
2020-03-27 01:09:16 +11:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
Paperclip::UrlGenerator.prepend(Paperclip::UrlGeneratorExtensions)
|