gitlab-org--gitlab-foss/app/controllers/projects/variables_controller.rb

51 lines
1.2 KiB
Ruby
Raw Normal View History

class Projects::VariablesController < Projects::ApplicationController
before_action :authorize_admin_build!
layout 'project_settings'
def index
redirect_to project_settings_ci_cd_path(@project)
end
def show
2016-04-27 08:01:43 +00:00
@variable = @project.variables.find(params[:id])
end
def update
2016-04-27 08:01:43 +00:00
@variable = @project.variables.find(params[:id])
if @variable.update_attributes(project_params)
redirect_to project_variables_path(project), notice: 'Variable was successfully updated.'
2016-04-27 08:01:43 +00:00
else
render action: "show"
2016-04-27 08:01:43 +00:00
end
end
def create
@variable = Ci::Variable.new(project_params)
if @variable.valid? && @project.variables << @variable
flash[:notice] = 'Variables were successfully updated.'
redirect_to project_settings_ci_cd_path(project)
else
render "show"
end
end
2016-04-27 08:01:43 +00:00
def destroy
@key = @project.variables.find(params[:id])
@key.destroy
redirect_to project_settings_ci_cd_path(project),
status: 302,
notice: 'Variable was successfully removed.'
2016-04-27 08:01:43 +00:00
end
private
def project_params
params.require(:variable)
.permit([:id, :key, :value, :protected, :_destroy])
end
end