summaryrefslogtreecommitdiff
path: root/app/services/ci/runners/unregister_runner_service.rb
blob: 4ee1e73c4586873390850cc90b0365068d946bbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

module Ci
  module Runners
    class UnregisterRunnerService
      attr_reader :runner, :author

      # @param [Ci::Runner] runner the runner to unregister/destroy
      # @param [User, authentication token String] author the user or the authentication token that authorizes the removal
      def initialize(runner, author)
        @runner = runner
        @author = author
      end

      def execute
        @runner&.destroy
      end
    end
  end
end

Ci::Runners::UnregisterRunnerService.prepend_mod