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

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

module WorkItems
  module Widgets
    class Participants < Base
      delegate :participants, :visible_participants, to: :work_item
    end
  end
end