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

24 lines
534 B
Ruby
Raw Normal View History

class Projects::VariablesController < Projects::ApplicationController
before_action :authorize_admin_build!
def save_multiple
respond_to do |format|
format.json do
return head :ok if @project.update(variables_params)
render status: :bad_request, json: @project.errors.full_messages
end
end
end
private
def variables_params
params.permit(variables_attributes: [*variable_params_attributes])
end
def variable_params_attributes
%i[id key value protected _destroy]
end
end