summaryrefslogtreecommitdiff
path: root/app/helpers/container_registry_helper.rb
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