From b7d17aab66343d94e5aa9c1680d6bbf5fdfc173f Mon Sep 17 00:00:00 2001 From: Shinya Maeda Date: Thu, 6 Jul 2017 20:18:11 +0900 Subject: Use new project_variables_path in this MR --- app/controllers/projects/variables_controller.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'app/controllers/projects') diff --git a/app/controllers/projects/variables_controller.rb b/app/controllers/projects/variables_controller.rb index e8dcfa92348..a7fd4c2657c 100644 --- a/app/controllers/projects/variables_controller.rb +++ b/app/controllers/projects/variables_controller.rb @@ -5,7 +5,7 @@ class Projects::VariablesController < Projects::ApplicationController layout 'project_settings' def index - redirect_to namespace_project_settings_ci_cd_path(@project.namespace, @project) + redirect_to project_settings_ci_cd_path(@project) end def show @@ -34,11 +34,11 @@ class Projects::VariablesController < Projects::ApplicationController def destroy if variable.destroy - redirect_to namespace_project_settings_ci_cd_path(project.namespace, project), + redirect_to project_settings_ci_cd_path(project), status: 302, notice: 'Variable was successfully removed.' else - redirect_to namespace_project_settings_ci_cd_path(project.namespace, project), + redirect_to project_settings_ci_cd_path(project), status: 302, notice: 'Failed to remove the variable.' end -- cgit v1.2.3