Welcome to mirror list, hosted at ThFree Co, Russian Federation.

timeline_event_tag.rb « incident_management « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cde3afcaa16d13c41095630761b1a1346c7884f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

module IncidentManagement
  class TimelineEventTag < ApplicationRecord
    self.table_name = 'incident_management_timeline_event_tags'

    belongs_to :project, inverse_of: :incident_management_timeline_event_tags

    has_many :timeline_event_tag_links,
      class_name: 'IncidentManagement::TimelineEventTagLink'

    has_many :timeline_events,
      class_name: 'IncidentManagement::TimelineEvent',
      through: :timeline_event_tag_links

    validates :name, presence: true, format: { with: /\A[^,]+\z/ }
    validates :name, uniqueness: { scope: :project_id }
    validates :name, length: { maximum: 255 }
  end
end