sanger/sequencescape

View on GitHub
app/jobs/pick_list_job.rb

Summary

Maintainability
A
0 mins
Test Coverage
D
66%
# frozen_string_literal: true
# Triggers the building of the submission
PickListJob =
  Struct.new(:pick_list_id) do
    def perform
      PickList.find(pick_list_id).process_immediately
    end
  end