gitlab-org--gitlab-foss/lib/container_registry/config.rb

20 lines
302 B
Ruby

# frozen_string_literal: true
module ContainerRegistry
class Config
attr_reader :tag, :blob, :data
def initialize(tag, blob)
@tag = tag
@blob = blob
@data = Gitlab::Json.parse(blob.data)
end
def [](key)
return unless data
data[key]
end
end
end