blob: 1db3906a630d9bc6c719ef2628a3be19051141b4 (
plain) (
tree)
|
|
# frozen_string_literal: true
module ActiveStorage
module Attached::Changes #:nodoc:
extend ActiveSupport::Autoload
eager_autoload do
autoload :CreateOne
autoload :CreateMany
autoload :CreateOneOfMany
autoload :DeleteOne
autoload :DeleteMany
end
end
end
|