debian-mirror-gitlab/app/services/labels/create_service.rb

28 lines
815 B
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
module Labels
class CreateService < Labels::BaseService
def initialize(params = {})
2019-03-02 22:35:43 +05:30
@params = params.to_h.dup.with_indifferent_access
2017-08-17 22:00:37 +05:30
end
# returns the created label
def execute(target_params)
params[:color] = convert_color_name_to_hex if params[:color].present?
project_or_group = target_params[:project] || target_params[:group]
if project_or_group.present?
project_or_group.labels.create(params)
elsif target_params[:template]
label = Label.new(params)
label.template = true
label.save
label
else
2019-09-30 21:07:59 +05:30
Rails.logger.warn("target_params should contain :project or :group or :template, actual value: #{target_params}") # rubocop:disable Gitlab/RailsLogger
2017-08-17 22:00:37 +05:30
end
end
end
end