Sha256: 00c0e2ddae67efd6320913e9ed47ca904379889bc31c92f6631956ed5907d774

Contents?: true

Size: 825 Bytes

Versions: 179

Compression:

Stored size: 825 Bytes

Contents

module Katello
  class Api::V2::ContentViewHistoriesController < Api::V2::ApiController
    include Katello::Concerns::FilteredAutoCompleteSearch

    before_action :find_content_view

    api :GET, "/content_views/:id/history", N_("Show a content view's history")
    param :id, :number, :desc => N_("content view numeric identifier"), :required => true
    def index
      respond_for_index :collection => scoped_search(index_relation.distinct, :content_view_version_id, :asc, :resource_class => ContentViewHistory)
    end

    def index_relation
      ContentViewHistory.joins(:content_view_version).where("#{ContentViewVersion.table_name}.content_view_id" => @view.id)
    end

    private

    def find_content_view
      @view = ContentView.find(params[:content_view_id]) if params[:content_view_id]
    end
  end
end

Version data entries

179 entries across 179 versions & 1 rubygems

Version Path
katello-4.15.0.rc2 app/controllers/katello/api/v2/content_view_histories_controller.rb
katello-4.15.0.rc1 app/controllers/katello/api/v2/content_view_histories_controller.rb
katello-4.14.1 app/controllers/katello/api/v2/content_view_histories_controller.rb
katello-4.14.0 app/controllers/katello/api/v2/content_view_histories_controller.rb
katello-4.14.0.rc3 app/controllers/katello/api/v2/content_view_histories_controller.rb
katello-4.14.0.rc2 app/controllers/katello/api/v2/content_view_histories_controller.rb
katello-4.14.0.rc1.1 app/controllers/katello/api/v2/content_view_histories_controller.rb
katello-4.14.0.rc1 app/controllers/katello/api/v2/content_view_histories_controller.rb
katello-4.13.1 app/controllers/katello/api/v2/content_view_histories_controller.rb
katello-4.13.0 app/controllers/katello/api/v2/content_view_histories_controller.rb
katello-4.12.1 app/controllers/katello/api/v2/content_view_histories_controller.rb
katello-4.13.0.rc1 app/controllers/katello/api/v2/content_view_histories_controller.rb
katello-4.12.0 app/controllers/katello/api/v2/content_view_histories_controller.rb
katello-4.12.0.rc3 app/controllers/katello/api/v2/content_view_histories_controller.rb
katello-4.12.0.rc2 app/controllers/katello/api/v2/content_view_histories_controller.rb
katello-4.12.0.rc1 app/controllers/katello/api/v2/content_view_histories_controller.rb
katello-4.11.1 app/controllers/katello/api/v2/content_view_histories_controller.rb
katello-4.11.0 app/controllers/katello/api/v2/content_view_histories_controller.rb
katello-4.11.0.rc2 app/controllers/katello/api/v2/content_view_histories_controller.rb
katello-4.11.0.rc1 app/controllers/katello/api/v2/content_view_histories_controller.rb