2015-12-04 06:55:23 -05:00
|
|
|
class Admin::RunnerProjectsController < Admin::ApplicationController
|
|
|
|
before_action :project, only: [:create]
|
|
|
|
|
|
|
|
def create
|
|
|
|
@runner = Ci::Runner.find(params[:runner_project][:runner_id])
|
|
|
|
|
2016-06-14 11:11:43 -04:00
|
|
|
runner_project = @runner.assign_to(@project, current_user)
|
|
|
|
|
|
|
|
if runner_project.persisted?
|
2015-12-04 06:55:23 -05:00
|
|
|
redirect_to admin_runner_path(@runner)
|
|
|
|
else
|
|
|
|
redirect_to admin_runner_path(@runner), alert: 'Failed adding runner to project'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
|
|
|
rp = Ci::RunnerProject.find(params[:id])
|
|
|
|
runner = rp.runner
|
|
|
|
rp.destroy
|
|
|
|
|
|
|
|
redirect_to admin_runner_path(runner)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def project
|
2017-02-02 18:43:19 -05:00
|
|
|
@project = Project.find_by_full_path(
|
2015-12-04 06:55:23 -05:00
|
|
|
[params[:namespace_id], '/', params[:project_id]].join('')
|
|
|
|
)
|
|
|
|
@project || render_404
|
|
|
|
end
|
|
|
|
end
|