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

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

module WorkItems
  class BuildService < ::Issues::BuildService
    private

    def model_klass
      ::WorkItem
    end
  end
end