Sha256: 110598eb91b7197666303cac29a5e04f699a7f2b6b95bc290e2bda20d3f58bfe

Contents?: true

Size: 1.83 KB

Versions: 9

Compression:

Stored size: 1.83 KB

Contents

object @resource

extends 'katello/api/v2/common/identifier'

attributes :version, :major, :minor
attributes :composite_content_view_ids
attributes :content_view_id
attributes :default
attributes :description
attributes :package_count
attributes :puppet_module_count
attributes :docker_image_count
attributes :docker_tag_count

node :errata_counts do |version|
  partial('katello/api/v2/errata/counts', :object => Katello::RelationPresenter.new(version.errata))
end

child :content_view => :content_view do
  attributes :id, :name, :label
end

child :composite_content_views do
  attributes :id, :name, :label
end

node :permissions do |cvv|
  {
    :deletable => cvv.removable?
  }
end

extends 'katello/api/v2/common/timestamps'

version = @object || @resource
child :environments => :environments do
  attributes :id, :name, :label

  node :puppet_environment_id do |environment|
    version.puppet_env(environment).try(:puppet_environment).try(:id)
  end

  node :permissions do |env|
    {
      :readable => env.readable?,
      :promotable_or_removable => env.promotable_or_removable?,
      :all_systems_editable => Katello::System.all_editable?(version.content_view_id, env.id),
      :all_keys_editable => Katello::System.all_editable?(version.content_view_id, env.id)
    }
  end

  node :system_count do |env|
    Katello::System.in_environment(env).where(:content_view_id => version.content_view_id).count
  end

  node :activation_key_count do |env|
    Katello::ActivationKey.where(:environment_id => env.id).where(:content_view_id => version.content_view_id).count
  end
end

child :archived_repos => :repositories do
  attributes :id, :name, :label
end

child :last_event => :last_event do
  extends 'katello/api/v2/content_view_histories/show'
end

child :active_history => :active_history do
  extends 'katello/api/v2/content_view_histories/show'
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
katello-2.4.5 app/views/katello/api/v2/content_view_versions/base.json.rabl
katello-2.4.4 app/views/katello/api/v2/content_view_versions/base.json.rabl
katello-2.4.3 app/views/katello/api/v2/content_view_versions/base.json.rabl
katello-2.4.2 app/views/katello/api/v2/content_view_versions/base.json.rabl
katello-2.4.1 app/views/katello/api/v2/content_view_versions/base.json.rabl
katello-2.4.0 app/views/katello/api/v2/content_view_versions/base.json.rabl
katello-2.4.0.rc3 app/views/katello/api/v2/content_view_versions/base.json.rabl
katello-2.4.0.rc2 app/views/katello/api/v2/content_view_versions/base.json.rabl
katello-2.4.0.rc1 app/views/katello/api/v2/content_view_versions/base.json.rabl