Project

General

Profile

Download (834 Bytes) Statistics
| Branch: | Tag: | Revision:
module Api
module V1
class FactValuesController < V1::BaseController
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.
authorized(:view_facts).
my_facts.
no_timestamp_facts.
search_for(*search_options).paginate(paginate_options).
includes(:fact_name, :host)
render :json => FactValue.build_facts_hash(values.all)
end

end
end
end
(13-13/32)