2022-07-23 23:45:48 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module WorkItems
|
|
|
|
module Widgets
|
|
|
|
class Hierarchy < Base
|
|
|
|
def parent
|
|
|
|
work_item.work_item_parent
|
|
|
|
end
|
|
|
|
|
|
|
|
def children
|
2023-03-17 16:20:25 +05:30
|
|
|
work_item.work_item_children_by_created_at
|
2022-07-23 23:45:48 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|