PerfectlyNormal/mm-nested-attributes

View on GitHub
lib/mongo_mapper/plugins/associations/nested_attributes/destructable.rb

Summary

Maintainability
A
0 mins
Test Coverage
module MongoMapper
  module Plugins
    module Associations
      module NestedAttributes
        module Destructable
          def mark_for_destruction
            @marked_for_destruction = true
          end

          def marked_for_destruction?
            @marked_for_destruction
          end
        end
      end
    end
  end
end