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:
authorJan Provaznik <jprovaznik@gitlab.com>2019-06-24 12:51:34 +0300
committerJan Provaznik <jprovaznik@gitlab.com>2019-06-24 12:51:34 +0300
commit4189ffe2142e0a0969a3f28ec55e069c3b5abb9f (patch)
treeabb30e42e8317a53dfe72c5cfaa7ddfd28ce47ae /lib/gitlab/hook_data
parentda4702493d046e6de24c0a071b0162818e9d990c (diff)
Added labels_hook_attrs method
Based on review comment fetching labels hook_attrs is now wrapped in an issue's model method.
Diffstat (limited to 'lib/gitlab/hook_data')
-rw-r--r--lib/gitlab/hook_data/issue_builder.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/hook_data/issue_builder.rb b/lib/gitlab/hook_data/issue_builder.rb
index 22ca23cde2a..e5f86ca02b5 100644
--- a/lib/gitlab/hook_data/issue_builder.rb
+++ b/lib/gitlab/hook_data/issue_builder.rb
@@ -45,7 +45,7 @@ module Gitlab
human_time_estimate: issue.human_time_estimate,
assignee_ids: issue.assignee_ids,
assignee_id: issue.assignee_ids.first, # This key is deprecated
- labels: issue.labels.map(&:hook_attrs)
+ labels: issue.labels_hook_attrs
}
issue.attributes.with_indifferent_access.slice(*self.class.safe_hook_attributes)