mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-09 17:09:45 +08:00
30 lines
967 B
Ruby
30 lines
967 B
Ruby
class SampleGroup < ActiveRecord::Base
|
|
include InputSanitizeHelper
|
|
|
|
auto_strip_attributes :name, :color, nullify: false
|
|
before_validation :sanitize_fields, on: [:create, :update]
|
|
validates :name,
|
|
presence: true,
|
|
length: { maximum: Constants::NAME_MAX_LENGTH },
|
|
uniqueness: { scope: :organization, case_sensitive: false }
|
|
validates :color,
|
|
presence: true,
|
|
length: { maximum: Constants::COLOR_MAX_LENGTH }
|
|
validates :organization, presence: true
|
|
|
|
belongs_to :created_by, foreign_key: 'created_by_id', class_name: 'User'
|
|
belongs_to :last_modified_by,
|
|
foreign_key: 'last_modified_by_id',
|
|
class_name: 'User'
|
|
belongs_to :organization, inverse_of: :sample_groups
|
|
has_many :samples, inverse_of: :sample_groups
|
|
|
|
scope :sorted, -> { order(name: :asc) }
|
|
|
|
private
|
|
|
|
def sanitize_fields
|
|
self.name = escape_input(name)
|
|
self.color = escape_input(color)
|
|
end
|
|
end
|