summaryrefslogtreecommitdiff
path: root/app/models/work_items/widgets/hierarchy.rb
blob: ee10c631bccd8f76125639f1a4c0b297b114a383 (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_by_created_at
      end
    end
  end
end