debian-mirror-gitlab/app/services/boards/lists/list_service.rb
2018-11-18 11:00:15 +05:30

13 lines
261 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
end
end
end
end