sanger/limber

View on GitHub
app/models/labware_creators/plate_with_template.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true

require_dependency 'form'
require_dependency 'labware_creators'

module LabwareCreators
  class PlateWithTemplate < Base # rubocop:todo Style/Documentation
    include SupportParent::PlateOnly

    def transfer_material_from_parent!(child_uuid)
      transfer!(source_uuid: parent_uuid, destination_uuid: child_uuid)
    end
  end
end