debian-mirror-gitlab/app/services/boards/lists/create_service.rb

11 lines
217 B
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2016-09-13 17:45:13 +05:30
module Boards
module Lists
2021-03-11 19:13:27 +05:30
class CreateService < Boards::Lists::BaseCreateService
2016-09-13 17:45:13 +05:30
end
end
end
2019-12-04 20:38:33 +05:30
Boards::Lists::CreateService.prepend_if_ee('EE::Boards::Lists::CreateService')