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

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

module ContainerRegistryHelper
  def limit_delete_tags_service?
    Feature.enabled?(:container_registry_expiration_policies_throttling) &&
      ContainerRegistry::Client.supports_tag_delete?
  end
end