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:
Diffstat (limited to 'app/controllers/admin/requests_profiles_controller.rb')
-rw-r--r--app/controllers/admin/requests_profiles_controller.rb21
1 files changed, 0 insertions, 21 deletions
diff --git a/app/controllers/admin/requests_profiles_controller.rb b/app/controllers/admin/requests_profiles_controller.rb
deleted file mode 100644
index b60cb7ff9c2..00000000000
--- a/app/controllers/admin/requests_profiles_controller.rb
+++ /dev/null
@@ -1,21 +0,0 @@
-# frozen_string_literal: true
-
-class Admin::RequestsProfilesController < Admin::ApplicationController
- feature_category :not_owned # rubocop:todo Gitlab/AvoidFeatureCategoryNotOwned
-
- def index
- @profile_token = Gitlab::RequestProfiler.profile_token
- @profiles = Gitlab::RequestProfiler.all.group_by(&:request_path)
- end
-
- def show
- clean_name = Rack::Utils.clean_path_info(params[:name])
- profile = Gitlab::RequestProfiler.find(clean_name)
-
- unless profile && profile.content_type
- return redirect_to admin_requests_profiles_path, alert: 'Profile not found'
- end
-
- send_file profile.file_path, type: "#{profile.content_type}; charset=utf-8", disposition: 'inline'
- end
-end