Welcome to mirror list, hosted at ThFree Co, Russian Federation.

variables_controller.rb « projects « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d6561a45a701f52fb616869f0ce0bd92cc256061 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
class Projects::VariablesController < Projects::ApplicationController
  before_action :ci_project
  before_action :authorize_admin_project!

  layout 'project_settings'

  def show
  end

  def update
    if ci_project.update_attributes(project_params)
      Ci::EventService.new.change_project_settings(current_user, ci_project)

      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