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:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-12-07 06:12:02 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-12-07 06:12:02 +0300
commit71154adca40dc0f8eb80dd1dc81d60ba92af4e99 (patch)
tree9128c829d09baf5af621218ab2d037fc8d39a2c2 /app/controllers
parentc9a3dc1c2464a92a8f2a5c2f4f30883aa9f976f1 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/projects/jobs_controller.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/app/controllers/projects/jobs_controller.rb b/app/controllers/projects/jobs_controller.rb
index d5a7f25d4ce..4062e625e07 100644
--- a/app/controllers/projects/jobs_controller.rb
+++ b/app/controllers/projects/jobs_controller.rb
@@ -21,7 +21,6 @@ class Projects::JobsController < Projects::ApplicationController
before_action :verify_api_request!, only: :terminal_websocket_authorize
before_action :authorize_create_proxy_build!, only: :proxy_websocket_authorize
before_action :verify_proxy_request!, only: :proxy_websocket_authorize
- before_action :push_job_log_jump_to_failures, only: [:show]
before_action :reject_if_build_artifacts_size_refreshing!, only: [:erase]
before_action :push_ai_build_failure_cause, only: [:show]
layout 'project'
@@ -277,10 +276,6 @@ class Projects::JobsController < Projects::ApplicationController
::Gitlab::Workhorse.channel_websocket(service)
end
- def push_job_log_jump_to_failures
- push_frontend_feature_flag(:job_log_jump_to_failures, @project)
- end
-
def push_ai_build_failure_cause
push_frontend_feature_flag(:ai_build_failure_cause, @project)
end