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

assignees.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: ecbbee1bcfb1b1162c268f2288c979b1188f8ef9 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

module WorkItems
  module Widgets
    class Assignees < Base
      delegate :assignees, to: :work_item
      delegate :allows_multiple_assignees?, to: :work_item
    end
  end
end