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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/work_items/widgets/participants.rb')
-rw-r--r--app/models/work_items/widgets/participants.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/app/models/work_items/widgets/participants.rb b/app/models/work_items/widgets/participants.rb
new file mode 100644
index 00000000000..7ecbf3e0f0a
--- /dev/null
+++ b/app/models/work_items/widgets/participants.rb
@@ -0,0 +1,9 @@
+# frozen_string_literal: true
+
+module WorkItems
+ module Widgets
+ class Participants < Base
+ delegate :participants, :visible_participants, to: :work_item
+ end
+ end
+end