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

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

module WorkItems
  module Widgets
    class Weight < Base
      delegate :weight, to: :work_item
    end
  end
end