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

11 lines
216 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
2021-06-08 01:23:25 +05:30
Boards::Lists::CreateService.prepend_mod_with('Boards::Lists::CreateService')