scinote-web/app/models/sample_group.rb

27 lines
865 B
Ruby
Raw Normal View History

2017-06-23 21:19:08 +08:00
class SampleGroup < ApplicationRecord
2017-04-11 20:55:44 +08:00
include SearchableModel
auto_strip_attributes :name, :color, nullify: false
validates :name,
presence: true,
length: { maximum: Constants::NAME_MAX_LENGTH },
2017-01-24 23:34:21 +08:00
uniqueness: { scope: :team, case_sensitive: false }
validates :color,
presence: true,
length: { maximum: Constants::COLOR_MAX_LENGTH }
2017-01-24 23:34:21 +08:00
validates :team, presence: true
2016-02-12 23:52:43 +08:00
2017-06-28 21:21:32 +08:00
belongs_to :created_by,
foreign_key: 'created_by_id',
class_name: 'User',
optional: true
belongs_to :last_modified_by,
foreign_key: 'last_modified_by_id',
2017-06-28 21:21:32 +08:00
class_name: 'User',
optional: true
belongs_to :team, inverse_of: :sample_groups, optional: true
2016-02-12 23:52:43 +08:00
has_many :samples, inverse_of: :sample_groups
scope :sorted, -> { order(name: :asc) }
2016-02-12 23:52:43 +08:00
end