diff options
author | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-10-13 19:30:02 -0300 |
---|---|---|
committer | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-10-19 14:58:26 -0200 |
commit | f008cdf218952556a0dc93962f55c0ff50733594 (patch) | |
tree | 925f2b875d33c14376e5eec5d1fda409cc4c42dc /app | |
parent | ed7591f7b8c55498e3e38be41cc049a92b9fe4a6 (diff) | |
download | gitlab-ce-f008cdf218952556a0dc93962f55c0ff50733594.tar.gz |
Remove Issuable#add_labels_by_names
Diffstat (limited to 'app')
-rw-r--r-- | app/models/concerns/issuable.rb | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/app/models/concerns/issuable.rb b/app/models/concerns/issuable.rb index 0b57e318662..76de927ceab 100644 --- a/app/models/concerns/issuable.rb +++ b/app/models/concerns/issuable.rb @@ -230,18 +230,6 @@ module Issuable labels.order('title ASC').pluck(:title) end - def add_labels_by_names(label_names, current_user) - available_labels = LabelsFinder.new(current_user, project_id: project.id).execute - - label_names.each do |label_name| - title = label_name.strip - label = available_labels.find_by(title: title) - label ||= project.labels.build(title: title, color: Label::DEFAULT_COLOR) - - self.labels << label - end - end - # Convert this Issuable class name to a format usable by Ability definitions # # Examples: |