Project

General

Profile

Download (672 Bytes) Statistics
| Branch: | Tag: | Revision:
module Api
module V2
class FactValuesController < V2::BaseController
before_filter :setup_search_options, :only => :index

api :GET, "/fact_values/", N_("List all fact values")
api :GET, "/hosts/:host_id/facts/", N_("List all fact values of a given host")
param_group :search_and_pagination, ::Api::V2::BaseController

def index
values = FactValue.
authorized(:view_facts).
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
(17-17/53)