sanger/sequencescape

View on GitHub
app/api/io/tube_creation.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true
# Controls API V1 IO for {::TubeCreation}
class Io::TubeCreation < Core::Io::Base
  set_model_for_input(::TubeCreation)
  set_json_root(:tube_creation)
  set_eager_loading(&:include_parent)

  define_attribute_and_json_mapping(
    '
                   user <=> user
                 parent <=> parent
          child_purpose <=> child_purpose
  '
  )
end