gitlab-org--gitlab-foss/app/models/work_items/widgets/weight.rb

9 lines
146 B
Ruby

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