Skip to content

Commit

Permalink
Add a bulk transfers endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
sdjmchattie committed Oct 18, 2024
1 parent 265291d commit 9016d4d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions app/sequencescape/sequencescape/api/v2/bulk_transfer.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# frozen_string_literal: true

# Represents a bulk transfer in Limber via the Sequencescape API
class Sequencescape::Api::V2::BulkTransfer < Sequencescape::Api::V2::Base
has_many :transfers, class_name: 'Sequencescape::Api::V2::Transfer'
has_one :user, class_name: 'Sequencescape::Api::V2::User'
end

0 comments on commit 9016d4d

Please sign in to comment.