2016-02-12 23:52:43 +08:00
|
|
|
class SampleGroup < ActiveRecord::Base
|
2016-09-21 21:35:23 +08:00
|
|
|
auto_strip_attributes :name, :color, nullify: false
|
2016-10-05 23:45:20 +08:00
|
|
|
validates :name,
|
|
|
|
presence: true,
|
2016-11-25 22:53:44 +08:00
|
|
|
length: { maximum: Constants::NAME_MAX_LENGTH },
|
|
|
|
uniqueness: { scope: :organization, case_sensitive: false }
|
2016-10-05 23:45:20 +08:00
|
|
|
validates :color,
|
|
|
|
presence: true,
|
|
|
|
length: { maximum: Constants::COLOR_MAX_LENGTH }
|
2016-02-12 23:52:43 +08:00
|
|
|
validates :organization, presence: true
|
|
|
|
|
|
|
|
belongs_to :created_by, foreign_key: 'created_by_id', class_name: 'User'
|
2016-12-02 16:58:35 +08:00
|
|
|
belongs_to :last_modified_by,
|
|
|
|
foreign_key: 'last_modified_by_id',
|
|
|
|
class_name: 'User'
|
2016-02-12 23:52:43 +08:00
|
|
|
belongs_to :organization, inverse_of: :sample_groups
|
|
|
|
has_many :samples, inverse_of: :sample_groups
|
2016-12-02 16:58:35 +08:00
|
|
|
|
|
|
|
scope :sorted, -> { order(name: :asc) }
|
2016-02-12 23:52:43 +08:00
|
|
|
end
|