summaryrefslogtreecommitdiff
path: root/app/controllers/projects/error_tracking_controller.rb
diff options
context:
space:
mode:
authorPeter Leitzen <pleitzen@gitlab.com>2019-01-10 18:50:14 +0100
committerPeter Leitzen <pleitzen@gitlab.com>2019-01-15 21:33:40 +0100
commit77eff52afa379d653c47ecc64e75779a330be5e1 (patch)
tree34a35116cf6d491e0c90e0e4e191ebfe3edff434 /app/controllers/projects/error_tracking_controller.rb
parent75b1837da79b5244a8da6bde1e391343fef59431 (diff)
downloadgitlab-ce-77eff52afa379d653c47ecc64e75779a330be5e1.tar.gz
Remove `error_tracking` feature flag
We introduced the feature flag `error_tracking` to test the Sentry MVC safely. After the successful test, we remove it again.
Diffstat (limited to 'app/controllers/projects/error_tracking_controller.rb')
-rw-r--r--app/controllers/projects/error_tracking_controller.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/app/controllers/projects/error_tracking_controller.rb b/app/controllers/projects/error_tracking_controller.rb
index 4596b6c91f2..9e403e1d25b 100644
--- a/app/controllers/projects/error_tracking_controller.rb
+++ b/app/controllers/projects/error_tracking_controller.rb
@@ -1,9 +1,7 @@
# frozen_string_literal: true
class Projects::ErrorTrackingController < Projects::ApplicationController
- before_action :check_feature_flag!
before_action :authorize_read_sentry_issue!
- before_action :push_feature_flag_to_frontend
POLLING_INTERVAL = 10_000
@@ -43,12 +41,4 @@ class Projects::ErrorTrackingController < Projects::ApplicationController
.new(project: project, user: current_user)
.represent(errors)
end
-
- def check_feature_flag!
- render_404 unless Feature.enabled?(:error_tracking, project)
- end
-
- def push_feature_flag_to_frontend
- push_frontend_feature_flag(:error_tracking, current_user)
- end
end