Commit 08ecab60 authored by Jose Ivan Vargas's avatar Jose Ivan Vargas

changed pipelines controller name to ci_cd_pipelines

parent 58110293
...@@ -259,7 +259,7 @@ ...@@ -259,7 +259,7 @@
new gl.ProtectedBranchCreate(); new gl.ProtectedBranchCreate();
new gl.ProtectedBranchEditList(); new gl.ProtectedBranchEditList();
break; break;
case 'projects:variables:index': case 'projects:ci_cd_pipelines:show':
new gl.ProjectVariables(); new gl.ProjectVariables();
break; break;
case 'ci:lints:create': case 'ci:lints:create':
......
...@@ -2,13 +2,13 @@ class Projects::PipelinesSettingsController < Projects::ApplicationController ...@@ -2,13 +2,13 @@ class Projects::PipelinesSettingsController < Projects::ApplicationController
before_action :authorize_admin_pipeline! before_action :authorize_admin_pipeline!
def show def show
redirect_to namespace_project_settings_pipelines_path(@project.namespace, @project) redirect_to namespace_project_settings_ci_cd_pipelines_path(@project.namespace, @project)
end end
def update def update
if @project.update_attributes(update_params) if @project.update_attributes(update_params)
flash[:notice] = "CI/CD Pipelines settings for '#{@project.name}' were successfully updated." flash[:notice] = "CI/CD Pipelines settings for '#{@project.name}' were successfully updated."
redirect_to namespace_project_settings_pipelines_path(@project.namespace, @project) redirect_to namespace_project_settings_ci_cd_pipelines_path(@project.namespace, @project)
else else
render 'show' render 'show'
end end
......
...@@ -5,7 +5,7 @@ class Projects::RunnersController < Projects::ApplicationController ...@@ -5,7 +5,7 @@ class Projects::RunnersController < Projects::ApplicationController
layout 'project_settings' layout 'project_settings'
def index 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 end
def edit def edit
...@@ -49,7 +49,7 @@ class Projects::RunnersController < Projects::ApplicationController ...@@ -49,7 +49,7 @@ class Projects::RunnersController < Projects::ApplicationController
def toggle_shared_runners def toggle_shared_runners
project.toggle!(:shared_runners_enabled) 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 end
protected protected
......
module Projects module Projects
module Settings module Settings
class PipelinesController < Projects::ApplicationController class CiCdPipelinesController < Projects::ApplicationController
before_action :authorize_admin_pipeline! before_action :authorize_admin_pipeline!
def show def show
# runners # runners
@project_runners = @project.runners.ordered @project_runners = @project.runners.ordered
......
...@@ -4,7 +4,7 @@ class Projects::VariablesController < Projects::ApplicationController ...@@ -4,7 +4,7 @@ class Projects::VariablesController < Projects::ApplicationController
layout 'project_settings' layout 'project_settings'
def index 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 end
def show def show
...@@ -15,7 +15,7 @@ class Projects::VariablesController < Projects::ApplicationController ...@@ -15,7 +15,7 @@ class Projects::VariablesController < Projects::ApplicationController
@variable = @project.variables.find(params[:id]) @variable = @project.variables.find(params[:id])
if @variable.update_attributes(project_params) if @variable.update_attributes(project_params)
redirect_to namespace_project_settings_pipelines_path(project.namespace, project), notice: 'Variable was successfully updated.' redirect_to namespace_project_settings_ci_cd_pipelines_path(project.namespace, project), notice: 'Variable was successfully updated.'
else else
render action: "show" render action: "show"
end end
...@@ -25,7 +25,7 @@ class Projects::VariablesController < Projects::ApplicationController ...@@ -25,7 +25,7 @@ class Projects::VariablesController < Projects::ApplicationController
@variable = Ci::Variable.new(project_params) @variable = Ci::Variable.new(project_params)
if @variable.valid? && @project.variables << @variable if @variable.valid? && @project.variables << @variable
redirect_to namespace_project_settings_pipelines_path(project.namespace, project), notice: 'Variables were successfully updated.' redirect_to namespace_project_settings_ci_cd_pipelines_path(project.namespace, project), notice: 'Variables were successfully updated.'
else else
render action: "index" render action: "index"
end end
...@@ -35,7 +35,7 @@ class Projects::VariablesController < Projects::ApplicationController ...@@ -35,7 +35,7 @@ class Projects::VariablesController < Projects::ApplicationController
@key = @project.variables.find(params[:id]) @key = @project.variables.find(params[:id])
@key.destroy @key.destroy
redirect_to namespace_project_settings_pipelines_path(project.namespace, project), notice: 'Variable was successfully removed.' redirect_to namespace_project_settings_ci_cd_pipelines_path(project.namespace, project), notice: 'Variable was successfully removed.'
end end
private private
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
- else - else
%h4.underlined-title Available shared Runners : #{@shared_runners_count} %h4.underlined-title Available shared Runners : #{@shared_runners_count}
%ul.bordered-list.available-shared-runners %ul.bordered-list.available-shared-runners
= render partial: 'runner', collection: @shared_runners, as: :runner = render partial: 'projects/runners/runner', collection: @shared_runners, as: :runner
- if @shared_runners_count > 10 - if @shared_runners_count > 10
.light .light
and #{@shared_runners_count - 10} more... and #{@shared_runners_count - 10} more...
...@@ -315,8 +315,8 @@ constraints(ProjectUrlConstrainer.new) do ...@@ -315,8 +315,8 @@ constraints(ProjectUrlConstrainer.new) do
end end
namespace :settings do namespace :settings do
resource :members, only: [:show] resource :members, only: [:show]
resource :ci_cd_pipelines, only: [:show]
resource :integrations, only: [:show] resource :integrations, only: [:show]
resource :pipelines, only: [:show]
end end
# Since both wiki and repository routing contains wildcard characters # Since both wiki and repository routing contains wildcard characters
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment