2019-10-08 19:38:57 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class RepositoryStatusItem < ApplicationRecord
|
2020-04-09 23:11:58 +08:00
|
|
|
validates :repository_column, :icon, presence: true
|
2019-10-08 19:38:57 +08:00
|
|
|
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,
|
2019-12-10 16:40:40 +08:00
|
|
|
inverse_of: :created_repository_status_types
|
2019-10-08 19:38:57 +08:00
|
|
|
belongs_to :last_modified_by, foreign_key: 'last_modified_by_id', class_name: 'User', optional: true,
|
2019-12-10 16:40:40 +08:00
|
|
|
inverse_of: :modified_repository_status_types
|
2020-01-09 00:32:07 +08:00
|
|
|
has_many :repository_status_values, inverse_of: :repository_status_item, dependent: :destroy
|
2020-05-14 17:47:19 +08:00
|
|
|
|
|
|
|
def data
|
|
|
|
"#{icon} #{status}"
|
|
|
|
end
|
2019-10-08 19:38:57 +08:00
|
|
|
end
|