debian-mirror-gitlab/app/controllers/projects/variables_controller.rb
2015-12-23 02:04:40 +05:30

23 lines
537 B
Ruby

class Projects::VariablesController < Projects::ApplicationController
before_action :authorize_admin_project!
layout 'project_settings'
def show
end
def update
if project.update_attributes(project_params)
redirect_to namespace_project_variables_path(project.namespace, project), notice: 'Variables were successfully updated.'
else
render action: 'show'
end
end
private
def project_params
params.require(:project).permit({ variables_attributes: [:id, :key, :value, :_destroy] })
end
end