mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-01 16:04:19 +00:00
46 lines
1.3 KiB
Ruby
46 lines
1.3 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class Admin::RunnerProjectsController < Admin::ApplicationController
|
|
before_action :project, only: [:create]
|
|
|
|
feature_category :runner
|
|
urgency :low
|
|
|
|
def create
|
|
@runner = Ci::Runner.find(safe_params[:runner_project][:runner_id])
|
|
|
|
if ::Ci::Runners::AssignRunnerService.new(@runner, @project, current_user).execute.success?
|
|
flash[:success] = s_('Runners|Runner assigned to project.')
|
|
redirect_to edit_admin_runner_url(@runner)
|
|
else
|
|
redirect_to edit_admin_runner_url(@runner), alert: s_('Runners|Failed adding runner to project')
|
|
end
|
|
end
|
|
|
|
def destroy
|
|
rp = Ci::RunnerProject.find(safe_params[:id])
|
|
runner = rp.runner
|
|
|
|
if ::Ci::Runners::UnassignRunnerService.new(rp, current_user).execute.success?
|
|
flash[:success] = s_('Runners|Runner unassigned from project.')
|
|
redirect_to edit_admin_runner_url(runner), status: :found
|
|
else
|
|
redirect_to edit_admin_runner_url(runner), status: :found,
|
|
alert: s_('Runners|Failed unassigning runner from project')
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def project
|
|
@project = Project.find_by_full_path(
|
|
[safe_params[:namespace_id], '/', safe_params[:project_id]].join('')
|
|
)
|
|
@project || render_404
|
|
end
|
|
|
|
def safe_params
|
|
params.permit(:id, :namespace_id, :project_id, runner_project: [:runner_id])
|
|
end
|
|
end
|