Welcome to mirror list, hosted at ThFree Co, Russian Federation.

work_item.rb « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 99f05e4a18125b64520c0c60ff538068bb5f9588 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

class WorkItem < Issue
  self.table_name = 'issues'
  self.inheritance_column = :_type_disabled

  def noteable_target_type_name
    'issue'
  end
end