mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 10:06:53 +08:00
22 lines
829 B
Ruby
22 lines
829 B
Ruby
# frozen_string_literal: true
|
|
|
|
class RepositoryListItem < ApplicationRecord
|
|
has_many :repository_list_values, inverse_of: :repository_list_item, dependent: :destroy
|
|
belongs_to :repository_column, inverse_of: :repository_list_items
|
|
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'
|
|
validate :validate_per_column_limit
|
|
validates :data,
|
|
presence: true,
|
|
uniqueness: { scope: :repository_column_id },
|
|
length: { maximum: Constants::TEXT_MAX_LENGTH }
|
|
|
|
private
|
|
|
|
def validate_per_column_limit
|
|
if repository_column &&
|
|
repository_column.repository_list_items.size > Constants::REPOSITORY_LIST_ITEMS_PER_COLUMN
|
|
errors.add(:base, :per_column_limit)
|
|
end
|
|
end
|
|
end
|