sanger/sequencescape

View on GitHub
app/api/model_extensions/bait_library_layout.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true
# Included in {BaitLibraryLayout} to provide scopes used by the V1 API
module ModelExtensions::BaitLibraryLayout
  def self.included(base)
    base.class_eval do
      extend ModelExtensions::Plate::NamedScopeHelpers
      include_plate_named_scope :plate
    end
  end
end