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

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

module Boards
  module Lists
    class CreateService < Boards::Lists::BaseCreateService
    end
  end
end

Boards::Lists::CreateService.prepend_if_ee('EE::Boards::Lists::CreateService')