Welcome to mirror list, hosted at ThFree Co, Russian Federation.

destroy_service.rb « deploy_tokens « projects « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e063f86a65c71ca9fe878b3b9d398a41e3379c7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Projects
  module DeployTokens
    class DestroyService < BaseService
      include DeployTokenMethods

      def execute
        destroy_deploy_token(@project, params)
      end
    end
  end
end