Sha256: 3d5653780b145e423230652d89ddac92774c74d48ae8c50af20394cb61372f75

Contents?: true

Size: 960 Bytes

Versions: 29

Compression:

Stored size: 960 Bytes

Contents

module Katello
  class Api::V2::CapsulesController < ::Api::V2::SmartProxiesController
    resource_description do
      api_base_url "/katello/api"
    end

    api :GET, '/capsules', 'List all capsules'
    param_group :search, Api::V2::ApiController
    def index
      @smart_proxies = SmartProxy.with_content.authorized(:view_smart_proxies).includes(:features).
                search_for(*search_options).paginate(paginate_options)
      @total = SmartProxy.with_content.authorized(:view_smart_proxies).includes(:features).count
    end

    api :GET, '/capsules/:id', 'Show the capsule details'
    param :id, Integer, :desc => 'Id of the capsule', :required => true
    def show
      super
    end

    def resource_name
      :smart_proxy
    end

    protected

    def resource_class
      SmartProxy
    end

    def authorized
      User.current.allowed_to?(params.slice(:action, :id).merge(controller: 'api/v2/smart_proxies'))
    end
  end
end

Version data entries

29 entries across 29 versions & 1 rubygems

Version Path
katello-3.0.0.rc4 app/controllers/katello/api/v2/capsules_controller.rb
katello-3.0.0.rc3 app/controllers/katello/api/v2/capsules_controller.rb
katello-3.0.0.rc2 app/controllers/katello/api/v2/capsules_controller.rb
katello-3.0.0.rc1 app/controllers/katello/api/v2/capsules_controller.rb
katello-2.4.1 app/controllers/katello/api/v2/capsules_controller.rb
katello-2.4.0 app/controllers/katello/api/v2/capsules_controller.rb
katello-2.4.0.rc3 app/controllers/katello/api/v2/capsules_controller.rb
katello-2.4.0.rc2 app/controllers/katello/api/v2/capsules_controller.rb
katello-2.4.0.rc1 app/controllers/katello/api/v2/capsules_controller.rb