debian-mirror-gitlab/app/services/boards/lists/list_service.rb
2019-12-21 20:55:43 +05:30

15 lines
358 B
Ruby

# frozen_string_literal: true
module Boards
module Lists
class ListService < Boards::BaseService
def execute(board)
board.lists.create(list_type: :backlog) unless board.lists.backlog.exists?
board.lists.preload_associations
end
end
end
end
Boards::Lists::ListService.prepend_if_ee('EE::Boards::Lists::ListService')