Sha256: 11e969f9fb8207864d77c48a0bdbb24250d2ac847a98dc9a94df1146b7940c39

Contents?: true

Size: 915 Bytes

Versions: 7

Compression:

Stored size: 915 Bytes

Contents

object @resource

extends "katello/api/v2/subscriptions/base"

attributes :arch
attributes :description
attributes :support_type
attributes :roles, :usage, :addons
attributes :product_host_count

node(:host_count) do |subscription|
  subscription.hosts.count
end

node :provided_products, :if => lambda { |sub| sub && !sub.products.blank? } do |subscription|
  subscription.products.map do |product|
    {id: product[:id], name: product[:name]}
  end
end

node :activation_keys do |subscription|
  subscription.activation_keys.readable.map do |key|
    {
      id: key.id,
      name: key.name,
      release_version: key.release_version,
      service_level: key.service_level,
      environment: {
        id: key.environment.try(:id),
        name: key.environment.try(:name)
      },
      content_view: {
        id: key.content_view.try(:id),
        name: key.content_view.try(:name)
      }
    }
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
katello-4.14.2 app/views/katello/api/v2/subscriptions/show.json.rabl
katello-4.14.1 app/views/katello/api/v2/subscriptions/show.json.rabl
katello-4.14.0 app/views/katello/api/v2/subscriptions/show.json.rabl
katello-4.14.0.rc3 app/views/katello/api/v2/subscriptions/show.json.rabl
katello-4.14.0.rc2 app/views/katello/api/v2/subscriptions/show.json.rabl
katello-4.14.0.rc1.1 app/views/katello/api/v2/subscriptions/show.json.rabl
katello-4.14.0.rc1 app/views/katello/api/v2/subscriptions/show.json.rabl