diff options
author | Robert Schilling <rschilling@student.tugraz.at> | 2019-01-03 15:07:13 +0100 |
---|---|---|
committer | Robert Schilling <rschilling@student.tugraz.at> | 2019-01-31 13:49:51 +0100 |
commit | 4e9aa7e2c042030cea190a1e57dee76de0e573ea (patch) | |
tree | 84e17993ce8a89a5b9554e133cba186f84082cf7 /lib/api/helpers.rb | |
parent | 22d2a48006176ffd87ef82b75340a38cf60adefe (diff) | |
download | gitlab-ce-4e9aa7e2c042030cea190a1e57dee76de0e573ea.tar.gz |
Correctly search for labels in parent groups
Diffstat (limited to 'lib/api/helpers.rb')
-rw-r--r-- | lib/api/helpers.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/api/helpers.rb b/lib/api/helpers.rb index ccfadef2736..afe0437c555 100644 --- a/lib/api/helpers.rb +++ b/lib/api/helpers.rb @@ -84,8 +84,8 @@ module API page || not_found!('Wiki Page') end - def available_labels_for(label_parent, search_params = {}) - search_params.merge(include_ancestor_groups: true) + def available_labels_for(label_parent, include_ancestor_groups = true) + search_params = { include_ancestor_groups: include_ancestor_groups } if label_parent.is_a?(Project) search_params[:project_id] = label_parent.id @@ -170,8 +170,8 @@ module API end end - def find_label(parent, id) - labels = available_labels_for(parent) + def find_label(parent, id, include_ancestor_groups = true) + labels = available_labels_for(parent, include_ancestor_groups) label = labels.find_by_id(id) || labels.find_by_title(id) label || not_found!('Label') |