debian-mirror-gitlab/app/models/work_item.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
346 B
Ruby
Raw Normal View History

2022-03-02 08:16:31 +05:30
# frozen_string_literal: true
class WorkItem < Issue
self.table_name = 'issues'
self.inheritance_column = :_type_disabled
2022-04-04 11:22:00 +05:30
def noteable_target_type_name
'issue'
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