gitlab-org--gitlab-foss/app/services/boards/create_service.rb
Alexandru Croitor 0f6c42c5ce Move Multiple Issue Boards for Projects to Core
Refactor code to allow multiple issue boards management for projects
in CE
2019-06-26 12:28:00 +03:00

26 lines
501 B
Ruby

# frozen_string_literal: true
module Boards
class CreateService < Boards::BaseService
def execute
create_board! if can_create_board?
end
private
def can_create_board?
parent.boards.empty? || parent.multiple_issue_boards_available?
end
def create_board!
board = parent.boards.create(params)
if board.persisted?
board.lists.create(list_type: :backlog)
board.lists.create(list_type: :closed)
end
board
end
end
end