rom-rb/rom-repository

View on GitHub
lib/rom/repository/changeset/create.rb

Summary

Maintainability
A
0 mins
Test Coverage
module ROM
  class Changeset
    # Changeset specialization for create commands
    #
    # @see Changeset::Stateful
    #
    # @api public
    class Create < Stateful
      command_type :create

      def command
        super.new(relation)
      end
    end
  end
end