summaryrefslogtreecommitdiff
path: root/app/controllers/projects/variables_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/projects/variables_controller.rb')
-rw-r--r--app/controllers/projects/variables_controller.rb50
1 files changed, 0 insertions, 50 deletions
diff --git a/app/controllers/projects/variables_controller.rb b/app/controllers/projects/variables_controller.rb
deleted file mode 100644
index c83d03f6e55..00000000000
--- a/app/controllers/projects/variables_controller.rb
+++ /dev/null
@@ -1,50 +0,0 @@
-class Projects::VariablesController < Projects::ApplicationController
- before_action :authorize_admin_build!
-
- layout 'project_settings'
-
- def index
- redirect_to namespace_project_settings_ci_cd_path(@project.namespace, @project)
- 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::ProjectVariable.new(project_params)
-
- if @variable.valid? && @project.variables << @variable
- flash[:notice] = 'Variables were successfully updated.'
- redirect_to namespace_project_settings_ci_cd_path(project.namespace, project)
- else
- render "show"
- end
- end
-
- def destroy
- @key = @project.variables.find(params[:id])
- @key.destroy
-
- redirect_to namespace_project_settings_ci_cd_path(project.namespace, project),
- status: 302,
- notice: 'Variable was successfully removed.'
- end
-
- private
-
- def project_params
- params.require(:variable)
- .permit([:id, :key, :value, :protected, :_destroy])
- end
-end