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.10.0 app/controllers/katello/api/v2/content_view_histories_controller.rb
katello-4.9.2 app/controllers/katello/api/v2/content_view_histories_controller.rb
katello-4.10.0.rc2 app/controllers/katello/api/v2/content_view_histories_controller.rb
katello-4.10.0.rc1 app/controllers/katello/api/v2/content_view_histories_controller.rb
katello-4.8.4 app/controllers/katello/api/v2/content_view_histories_controller.rb
katello-4.9.1 app/controllers/katello/api/v2/content_view_histories_controller.rb
katello-4.8.3 app/controllers/katello/api/v2/content_view_histories_controller.rb
katello-4.9.0 app/controllers/katello/api/v2/content_view_histories_controller.rb
katello-4.7.6 app/controllers/katello/api/v2/content_view_histories_controller.rb
katello-4.8.2 app/controllers/katello/api/v2/content_view_histories_controller.rb
katello-4.9.0.rc2 app/controllers/katello/api/v2/content_view_histories_controller.rb
katello-4.9.0.rc1 app/controllers/katello/api/v2/content_view_histories_controller.rb
katello-4.8.1 app/controllers/katello/api/v2/content_view_histories_controller.rb
katello-4.7.5 app/controllers/katello/api/v2/content_view_histories_controller.rb
katello-4.8.0 app/controllers/katello/api/v2/content_view_histories_controller.rb
katello-4.8.0.rc2 app/controllers/katello/api/v2/content_view_histories_controller.rb
katello-4.7.4 app/controllers/katello/api/v2/content_view_histories_controller.rb
katello-4.8.0.rc1 app/controllers/katello/api/v2/content_view_histories_controller.rb
katello-4.7.3 app/controllers/katello/api/v2/content_view_histories_controller.rb
katello-4.7.2 app/controllers/katello/api/v2/content_view_histories_controller.rb