sanger/limber

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

Summary

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

# This specialisation of MultiStamp is essentially like QuadrantStamp with the
# only difference that requests are filtered by primer panel.
# The filtering logic is implemented client side but essentially it will keep
# only the requests with a primer panel selected by the user.

module LabwareCreators
  class QuadrantStampPrimerPanel < QuadrantStampBase # rubocop:todo Style/Documentation
    self.request_filter = 'primer-panel'
  end
end