bda2c44a0b
Closes #14091
46 lines
1.2 KiB
Ruby
46 lines
1.2 KiB
Ruby
class Projects::VariablesController < Projects::ApplicationController
|
|
before_action :authorize_admin_build!
|
|
|
|
layout 'project_settings'
|
|
|
|
def index
|
|
@variable = Ci::Variable.new
|
|
end
|
|
|
|
def show
|
|
@variable = @project.variables.find(params[:id])
|
|
end
|
|
|
|
def update
|
|
@variable = @project.variables.find(params[:id])
|
|
|
|
if @variable.update_attributes(project_params)
|
|
redirect_to namespace_project_variables_path(project.namespace, project), notice: 'Variable was successfully updated.'
|
|
else
|
|
render action: "show"
|
|
end
|
|
end
|
|
|
|
def create
|
|
@variable = Ci::Variable.new(project_params)
|
|
|
|
if @variable.valid? && @project.variables << @variable
|
|
redirect_to namespace_project_variables_path(project.namespace, project), notice: 'Variables were successfully updated.'
|
|
else
|
|
render action: "index"
|
|
end
|
|
end
|
|
|
|
def destroy
|
|
@key = @project.variables.find(params[:id])
|
|
@key.destroy
|
|
|
|
redirect_to namespace_project_variables_path(project.namespace, project), notice: 'Variable was successfully removed.'
|
|
end
|
|
|
|
private
|
|
|
|
def project_params
|
|
params.require(:variable).permit([:id, :key, :value, :_destroy])
|
|
end
|
|
end
|