summaryrefslogtreecommitdiff
path: root/app/services/labels/update_service.rb
blob: c3a720a1c66d63de52d144608f698af6ca0d9ee1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

module Labels
  class UpdateService < Labels::BaseService
    def initialize(params = {})
      @params = params.dup.with_indifferent_access
    end

    # returns the updated label
    def execute(label)
      params[:color] = convert_color_name_to_hex if params[:color].present?

      label.update(params)
      label
    end
  end
end