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:
authorRémy Coutable <remy@rymai.me>2018-12-18 11:42:04 +0300
committerRémy Coutable <remy@rymai.me>2018-12-18 11:42:04 +0300
commit37e6863e963ed8e6c04db38c1ffaacf6db61db99 (patch)
tree99a51d9b97c63afcc00f96aa23f15bc57300dd74
parent7fa35300a14d39d6e7c3eaa7930865aeb78344ae (diff)
parentbada3f415fcd85ad72fbd473aab0075ce14593dc (diff)
Merge branch 'fj-fix-action-name-jobscontroller' into 'master'
Fixed action name in JobsController See merge request gitlab-org/gitlab-ce!23888
-rw-r--r--app/controllers/projects/jobs_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/projects/jobs_controller.rb b/app/controllers/projects/jobs_controller.rb
index c58b30eace7..bfbbcba883f 100644
--- a/app/controllers/projects/jobs_controller.rb
+++ b/app/controllers/projects/jobs_controller.rb
@@ -9,7 +9,7 @@ class Projects::JobsController < Projects::ApplicationController
before_action :authorize_update_build!,
except: [:index, :show, :status, :raw, :trace, :cancel_all, :erase]
before_action :authorize_erase_build!, only: [:erase]
- before_action :authorize_use_build_terminal!, only: [:terminal, :terminal_workhorse_authorize]
+ before_action :authorize_use_build_terminal!, only: [:terminal, :terminal_websocket_authorize]
before_action :verify_api_request!, only: :terminal_websocket_authorize
layout 'project'