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

update_service.rb « boards « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 88aced01ccd8b5bfba1260a8535d260142c4f42d (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module Boards
  class UpdateService < Boards::BaseService
    def execute(board)
      board.update(params)
    end
  end
end