gitlab-org--gitlab-foss/app/services/boards/lists/list_service.rb

12 lines
230 B
Ruby

module Boards
module Lists
class ListService < Boards::BaseService
def execute(board)
board.lists.create(list_type: :backlog) unless board.lists.backlog.exists?
board.lists
end
end
end
end