12ee2753c1
Enables frozen string for some vestigial files as well as the following: * app/controllers/projects/**/*.rb * app/controllers/sherlock/**/*.rb * app/controllers/snippets/**/*.rb * app/controllers/users/**/*.rb Partially addresses #47424.
28 lines
709 B
Ruby
28 lines
709 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Projects::RunnerProjectsController < Projects::ApplicationController
|
|
before_action :authorize_admin_build!
|
|
|
|
layout 'project_settings'
|
|
|
|
def create
|
|
@runner = Ci::Runner.find(params[:runner_project][:runner_id])
|
|
|
|
return head(403) unless can?(current_user, :assign_runner, @runner)
|
|
|
|
path = project_runners_path(project)
|
|
|
|
if @runner.assign_to(project, current_user)
|
|
redirect_to path
|
|
else
|
|
redirect_to path, alert: 'Failed adding runner to project'
|
|
end
|
|
end
|
|
|
|
def destroy
|
|
runner_project = project.runner_projects.find(params[:id])
|
|
runner_project.destroy
|
|
|
|
redirect_to project_runners_path(project), status: :found
|
|
end
|
|
end
|