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