aboutsummaryrefslogtreecommitdiffstats
path: root/activestorage/lib/active_storage/attached/changes.rb
blob: 1db3906a630d9bc6c719ef2628a3be19051141b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 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