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

notes.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: bde94ea8f43fd3b7a4e5ae42ee5511d7de3292b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

module WorkItems
  module Widgets
    class Notes < Base
      delegate :notes, to: :work_item
      delegate_missing_to :work_item

      def declarative_policy_delegate
        work_item
      end
    end
  end
end