lib/mongoid/association/nested.rb



# frozen_string_literal: true
# rubocop:todo all

require 'mongoid/association/nested/nested_buildable'
require 'mongoid/association/nested/many'
require 'mongoid/association/nested/one'

module Mongoid
  module Association
    module Nested

      # The flags indicating that an association can be destroyed.
      DESTROY_FLAGS = [1, "1", true, "true"].freeze
    end
  end
end