summaryrefslogtreecommitdiff
path: root/app/helpers/container_registry_helper.rb
blob: 1b77b639ce11f7ab7f9080321d2a8caf31b10e04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

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

  def container_repository_gid_prefix
    "gid://#{GlobalID.app}/#{ContainerRepository.name}/"
  end
end