summaryrefslogtreecommitdiff
path: root/app/services/boards/lists/list_service.rb
blob: 5cf5f14a55b3a7f36d6e3eb0ccb027f6405e67b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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