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:
authorJose Ivan Vargas <jvargas@gitlab.com>2017-01-06 18:23:32 +0300
committerJose Ivan Vargas <jvargas@gitlab.com>2017-02-06 23:51:18 +0300
commit08ecab601398b9c62fb4b6c6231f610e5636f977 (patch)
treee19d5f474ba9186e7ffdc7584ecdb926edde02c9 /app/controllers/projects/runners_controller.rb
parent58110293d4425c50a87975749551e069a02dc0cd (diff)
changed pipelines controller name to ci_cd_pipelines
Diffstat (limited to 'app/controllers/projects/runners_controller.rb')
-rw-r--r--app/controllers/projects/runners_controller.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/projects/runners_controller.rb b/app/controllers/projects/runners_controller.rb
index db69abe0337..97009135fa1 100644
--- a/app/controllers/projects/runners_controller.rb
+++ b/app/controllers/projects/runners_controller.rb
@@ -5,7 +5,7 @@ class Projects::RunnersController < Projects::ApplicationController
layout 'project_settings'
def index
- redirect_to namespace_project_settings_pipelines_path(@project.namespace, @project)
+ redirect_to namespace_project_settings_ci_cd_pipelines_path(@project.namespace, @project)
end
def edit
@@ -49,7 +49,7 @@ class Projects::RunnersController < Projects::ApplicationController
def toggle_shared_runners
project.toggle!(:shared_runners_enabled)
- redirect_to namespace_project_settings_pipelines_path(@project.namespace, @project)
+ redirect_to namespace_project_settings_ci_cd_pipelines_path(@project.namespace, @project)
end
protected