2018-11-18 11:00:15 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
class LabelPriority < ApplicationRecord
|
2021-02-22 17:27:13 +05:30
|
|
|
include Importable
|
|
|
|
|
2016-11-03 12:29:30 +05:30
|
|
|
belongs_to :project
|
|
|
|
belongs_to :label
|
|
|
|
|
2021-02-22 17:27:13 +05:30
|
|
|
validates :label, presence: true, unless: :importing?
|
|
|
|
validates :project, :priority, presence: true
|
2016-11-03 12:29:30 +05:30
|
|
|
validates :label_id, uniqueness: { scope: :project_id }
|
|
|
|
validates :priority, numericality: { only_integer: true, greater_than_or_equal_to: 0 }
|
|
|
|
end
|