sanger/sequencescape

View on GitHub
app/models/plate_owner.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true
class PlateOwner < ApplicationRecord
  belongs_to :user
  belongs_to :plate
  belongs_to :eventable, polymorphic: true

  validates :eventable, presence: true
end