2022-03-02 08:16:31 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class WorkItem < Issue
|
2022-08-13 15:12:31 +05:30
|
|
|
include Gitlab::Utils::StrongMemoize
|
|
|
|
|
2022-03-02 08:16:31 +05:30
|
|
|
self.table_name = 'issues'
|
|
|
|
self.inheritance_column = :_type_disabled
|
2022-04-04 11:22:00 +05:30
|
|
|
|
2022-08-13 15:12:31 +05:30
|
|
|
belongs_to :namespace, inverse_of: :work_items
|
2022-07-23 23:45:48 +05:30
|
|
|
has_one :parent_link, class_name: '::WorkItems::ParentLink', foreign_key: :work_item_id
|
|
|
|
has_one :work_item_parent, through: :parent_link, class_name: 'WorkItem'
|
|
|
|
|
|
|
|
has_many :child_links, class_name: '::WorkItems::ParentLink', foreign_key: :work_item_parent_id
|
|
|
|
has_many :work_item_children, through: :child_links, class_name: 'WorkItem',
|
|
|
|
foreign_key: :work_item_id, source: :work_item
|
|
|
|
|
|
|
|
scope :inc_relations_for_permission_check, -> { includes(:author, project: :project_feature) }
|
|
|
|
|
|
|
|
def self.assignee_association_name
|
|
|
|
'issue'
|
|
|
|
end
|
|
|
|
|
2022-04-04 11:22:00 +05:30
|
|
|
def noteable_target_type_name
|
|
|
|
'issue'
|
|
|
|
end
|
2022-05-07 20:08:51 +05:30
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
def widgets
|
2022-08-13 15:12:31 +05:30
|
|
|
strong_memoize(:widgets) do
|
|
|
|
work_item_type.widgets.map do |widget_class|
|
|
|
|
widget_class.new(self)
|
|
|
|
end
|
2022-07-23 23:45:48 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-05-07 20:08:51 +05:30
|
|
|
private
|
|
|
|
|
|
|
|
def record_create_action
|
|
|
|
super
|
|
|
|
|
|
|
|
Gitlab::UsageDataCounters::WorkItemActivityUniqueCounter.track_work_item_created_action(author: author)
|
|
|
|
end
|
2022-03-02 08:16:31 +05:30
|
|
|
end
|