gitlab-org--gitlab-foss/app/services/boards/lists/list_service.rb
2017-06-06 16:27:54 +01:00

11 lines
222 B
Ruby

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