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

update_service.rb « labels_service « widgets « work_items « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 780451e3eae55fa623e01de1bbf1d66e00967a98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module WorkItems
  module Widgets
    module LabelsService
      class UpdateService < BaseService
        def prepare_update_params(params: {})
          prepare_params(params: params, permitted_params: %i[add_label_ids remove_label_ids])
        end
      end
    end
  end
end