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:
authorFelipe Artur <fcardozo@gitlab.com>2018-09-04 19:54:05 +0300
committerFelipe Artur <fcardozo@gitlab.com>2018-09-04 19:54:05 +0300
commit732d8a83b65afde21ae09e05c295f5d8d1b39869 (patch)
treeea8cd245ff8c527824b32baf358d081b42555e2d /app/controllers
parent0db1db36d7aebc1b3545c5f677094a44225e3294 (diff)
parent329f7cbe9e605322985192b0fb6faa8de2222735 (diff)
Merge branch 'dz-group-labels-search' into 'master'
Add search to group labels page See merge request gitlab-org/gitlab-ce!21480
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/groups/labels_controller.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/controllers/groups/labels_controller.rb b/app/controllers/groups/labels_controller.rb
index 863f50e8e66..3e0076ac935 100644
--- a/app/controllers/groups/labels_controller.rb
+++ b/app/controllers/groups/labels_controller.rb
@@ -11,7 +11,7 @@ class Groups::LabelsController < Groups::ApplicationController
def index
respond_to do |format|
format.html do
- @labels = @group.labels.page(params[:page])
+ @labels = @available_labels.page(params[:page])
end
format.json do
render json: LabelSerializer.new.represent_appearance(@available_labels)
@@ -113,7 +113,7 @@ class Groups::LabelsController < Groups::ApplicationController
group_id: @group.id,
only_group_labels: params[:only_group_labels],
include_ancestor_groups: params[:include_ancestor_groups],
- include_descendant_groups: params[:include_descendant_groups]
- ).execute
+ include_descendant_groups: params[:include_descendant_groups],
+ search: params[:search]).execute
end
end