mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 01:44:34 +08:00
17 lines
787 B
Ruby
17 lines
787 B
Ruby
# frozen_string_literal: true
|
|
|
|
class RepositoryStatusItem < ApplicationRecord
|
|
validates :repository_column, :icon, presence: true
|
|
validates :status, presence: true, length: { minimum: Constants::NAME_MIN_LENGTH,
|
|
maximum: Constants::NAME_MAX_LENGTH }
|
|
belongs_to :repository_column
|
|
belongs_to :created_by, foreign_key: 'created_by_id', class_name: 'User', optional: true,
|
|
inverse_of: :created_repository_status_types
|
|
belongs_to :last_modified_by, foreign_key: 'last_modified_by_id', class_name: 'User', optional: true,
|
|
inverse_of: :modified_repository_status_types
|
|
has_many :repository_status_values, inverse_of: :repository_status_item, dependent: :destroy
|
|
|
|
def data
|
|
"#{icon} #{status}"
|
|
end
|
|
end
|