mirror of
				https://github.com/scinote-eln/scinote-web.git
				synced 2025-11-04 12:07:23 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			805 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			805 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
class SampleGroup < ApplicationRecord
 | 
						|
  include SearchableModel
 | 
						|
 | 
						|
  auto_strip_attributes :name, :color, nullify: false
 | 
						|
  validates :name,
 | 
						|
            presence: true,
 | 
						|
            length: { maximum: Constants::NAME_MAX_LENGTH },
 | 
						|
            uniqueness: { scope: :team_id, case_sensitive: false }
 | 
						|
  validates :color,
 | 
						|
            presence: true,
 | 
						|
            length: { maximum: Constants::COLOR_MAX_LENGTH }
 | 
						|
  validates :team, presence: true
 | 
						|
 | 
						|
  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', class_name: 'User', optional: true
 | 
						|
  belongs_to :team, inverse_of: :sample_groups
 | 
						|
  has_many :samples, inverse_of: :sample_groups
 | 
						|
 | 
						|
  scope :sorted, -> { order(name: :asc) }
 | 
						|
end
 |