summaryrefslogtreecommitdiff
path: root/lib/api/issues.rb
diff options
context:
space:
mode:
authortiagonbotelho <tiagonbotelho@hotmail.com>2016-08-09 23:08:59 +0100
committertiagonbotelho <tiagonbotelho@hotmail.com>2016-08-30 18:37:21 +0100
commitb7d29ce659412e9a2acc411c841420eb13d115ba (patch)
treefa34ac93e9364a81c2c548beab10acf7628609e5 /lib/api/issues.rb
parent7532c012c26fc116f7c39f7c88ac3b08d818955c (diff)
downloadgitlab-ce-b7d29ce659412e9a2acc411c841420eb13d115ba.tar.gz
adds test to check whether or not an email is sent to label subscribers after creating a new issue through the api
Diffstat (limited to 'lib/api/issues.rb')
-rw-r--r--lib/api/issues.rb25
1 files changed, 6 insertions, 19 deletions
diff --git a/lib/api/issues.rb b/lib/api/issues.rb
index 1121285f0af..9a042e6e70d 100644
--- a/lib/api/issues.rb
+++ b/lib/api/issues.rb
@@ -154,35 +154,22 @@ module API
render_api_error!({ labels: errors }, 400)
end
+ # Find or create labels
if params[:labels].present?
- params[:labels] = params[:labels].split(",").each { |word| word.strip! }
- attrs[:label_ids] = []
-
- params[:labels].each do |label|
- existing_label = user_project.labels.where(title: label).first
-
- unless existing_label.nil?
- attrs[:label_ids] << existing_label.id
- params[:labels].delete(label)
- end
+ attrs[:label_ids] = params[:labels].split(",").map do |label_name|
+ user_project.labels.create_with(color: Label::DEFAULT_COLOR)
+ .find_or_create_by(title: label_name.strip)
+ .id
end
end
- project = user_project
-
- issue = ::Issues::CreateService.new(project, current_user, attrs.merge(request: request, api: true)).execute
+ issue = ::Issues::CreateService.new(user_project, current_user, attrs.merge(request: request, api: true)).execute
if issue.spam?
render_api_error!({ error: 'Spam detected' }, 400)
end
if issue.valid?
- # create new labels and attach to issue. Labels are valid because
- # we already checked its name, so there can't be an error here
- if params[:labels].present?
- issue.add_labels_by_names(params[:labels])
- end
-
present issue, with: Entities::Issue, current_user: current_user
else
render_validation_error!(issue)