gitlab-org--gitlab-foss/app/services/protected_tags/destroy_service.rb

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

10 lines
166 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module ProtectedTags
class DestroyService < BaseService
def execute(protected_tag)
protected_tag.destroy
end
end
end