debian-mirror-gitlab/app/graphql/mutations/ci/runner/delete.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
625 B
Ruby
Raw Normal View History

2021-09-04 01:27:46 +05:30
# frozen_string_literal: true
module Mutations
module Ci
module Runner
class Delete < BaseMutation
graphql_name 'RunnerDelete'
authorize :delete_runner
RunnerID = ::Types::GlobalIDType[::Ci::Runner]
argument :id, RunnerID,
required: true,
description: 'ID of the runner to delete.'
def resolve(id:, **runner_attrs)
2023-06-20 00:43:36 +05:30
runner = authorized_find!(id: id)
2021-09-04 01:27:46 +05:30
2022-05-07 20:08:51 +05:30
::Ci::Runners::UnregisterRunnerService.new(runner, current_user).execute
2021-09-04 01:27:46 +05:30
{ errors: runner.errors.full_messages }
end
end
end
end
end