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

linked_items.rb « widgets « work_items « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 06a0f6db964c648295da3b95f527cbef4b44863d (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module WorkItems
  module Widgets
    class LinkedItems < Base
      delegate :related_issues, to: :work_item
    end
  end
end