13 lines
282 B
Ruby
13 lines
282 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.preload_associations
|
|
end
|
|
end
|
|
end
|
|
end
|