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

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

module WorkItems
  class RelatedLinkRestriction < ApplicationRecord
    self.table_name = 'work_item_related_link_restrictions'

    belongs_to :source_type, class_name: 'WorkItems::Type'
    belongs_to :target_type, class_name: 'WorkItems::Type'

    validates :source_type, presence: true
    validates :target_type, presence: true
    validates :target_type, uniqueness: { scope: [:source_type_id, :link_type] }

    enum link_type: Enums::IssuableLink.link_types
  end
end