summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2018-09-07 15:26:32 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2018-09-07 15:26:32 +0300
commiteca3015d8843522968e5c372b45631354f0ada51 (patch)
tree69bc720ce0bc2831aa40871e3d9ac74bd2af1642 /app
parent88239e941e1a4b05ca7eca7735a2b72e9312680e (diff)
downloadgitlab-ce-eca3015d8843522968e5c372b45631354f0ada51.tar.gz
Fix group labels page timeout if many projects and labels
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app')
-rw-r--r--app/controllers/groups/labels_controller.rb7
1 files changed, 4 insertions, 3 deletions
diff --git a/app/controllers/groups/labels_controller.rb b/app/controllers/groups/labels_controller.rb
index 3e0076ac935..184808cbfa5 100644
--- a/app/controllers/groups/labels_controller.rb
+++ b/app/controllers/groups/labels_controller.rb
@@ -2,7 +2,6 @@ class Groups::LabelsController < Groups::ApplicationController
include ToggleSubscriptionAction
before_action :label, only: [:edit, :update, :destroy]
- before_action :available_labels, only: [:index]
before_action :authorize_admin_labels!, only: [:new, :create, :edit, :update, :destroy]
before_action :save_previous_label_path, only: [:edit]
@@ -11,10 +10,12 @@ class Groups::LabelsController < Groups::ApplicationController
def index
respond_to do |format|
format.html do
- @labels = @available_labels.page(params[:page])
+ @labels = @group.labels
+ @labels = @labels.search(params[:search]) if params[:search].present?
+ @labels = @labels.page(params[:page])
end
format.json do
- render json: LabelSerializer.new.represent_appearance(@available_labels)
+ render json: LabelSerializer.new.represent_appearance(available_labels)
end
end
end