summaryrefslogtreecommitdiff
path: root/app/models/work_items/widgets/hierarchy.rb
blob: d0819076efd6a65af164f78822505c81299fd442 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module WorkItems
  module Widgets
    class Hierarchy < Base
      def parent
        work_item.work_item_parent
      end

      def children
        work_item.work_item_children
      end
    end
  end
end