gitlab-org--gitlab-foss/app/services/boards/lists/list_service.rb
2017-08-31 14:48:57 -03:00

11 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