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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-10-19 16:53:31 +0300
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-10-19 19:58:28 +0300
commit4f6d1c1d70d744ff599ae9c51e1cbc3a3c23e13e (patch)
tree0730947487efa9efd134a5263b209a642ccadbe8 /lib/gitlab/issues_labels.rb
parentfc2c64fcdf913a37f987ab5e5626ef9bb9e8b854 (diff)
Rename Labels::CreateService to Labels::FindOrCreateService
Diffstat (limited to 'lib/gitlab/issues_labels.rb')
-rw-r--r--lib/gitlab/issues_labels.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/issues_labels.rb b/lib/gitlab/issues_labels.rb
index 6788eca7146..01a2c19ab23 100644
--- a/lib/gitlab/issues_labels.rb
+++ b/lib/gitlab/issues_labels.rb
@@ -19,7 +19,7 @@ module Gitlab
]
labels.each do |params|
- ::Labels::CreateService.new(project.owner, project).execute(params)
+ ::Labels::FindOrCreateService.new(project.owner, project).execute(params)
end
end
end