Welcome to mirror list, hosted at ThFree Co, Russian Federation.

list_service.rb « lists « boards « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e57c95294af380b1f44354a749728f21ea499d5c (plain)
1
2
3
4
5
6
7
8
9
10
11
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