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

42 lines
963 B
Ruby
Raw Normal View History

class Projects::VariablesController < Projects::ApplicationController
before_action :authorize_admin_build!
def show
respond_to do |format|
format.json do
render status: :ok, json: { variables: VariableSerializer.new.represent(@project.variables) }
end
end
end
def update
if @project.update(variables_params)
respond_to do |format|
2018-02-06 16:56:54 +00:00
format.json { return render_variables }
end
else
respond_to do |format|
2018-02-06 16:56:54 +00:00
format.json { render_error }
end
end
end
private
2018-02-06 16:56:54 +00:00
def render_variables
render status: :ok, json: { variables: VariableSerializer.new.represent(@project.variables) }
end
def render_error
render status: :bad_request, json: @project.errors.full_messages
end
def variables_params
params.permit(variables_attributes: [*variable_params_attributes])
end
def variable_params_attributes
2018-03-22 11:08:16 +00:00
%i[id key secret_value protected _destroy]
end
end