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

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

module GpgKeys
  class DestroyService < Keys::BaseService
    def execute(key)
      key.destroy
    end
  end
end