Project

General

Profile

Download (845 Bytes) Statistics
| Branch: | Tag: | Revision:
module Api
module V2
class FactValuesController < V2::BaseController
before_filter :find_resource, :only => %w{show update destroy}
before_filter :setup_search_options, :only => :index

api :GET, "/fact_values/", "List all fact values."
api :GET, "/hosts/:host_id/facts/", "List all fact values of a given host."
param :search, String, :desc => "filter results"
param :order, String, :desc => "sort results"
param :page, String, :desc => "paginate results"
param :per_page, String, :desc => "number of entries per request"

def index
values = FactValue.my_facts.no_timestamp_facts.
search_for(*search_options).paginate(paginate_options).
includes(:fact_name, :host)
@fact_values = FactValue.build_facts_hash(values.all)
end

end
end
end
(13-13/44)