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

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

module WorkItems
  module Widgets
    class Description < Base
      delegate :description, to: :work_item
    end
  end
end