Parent

Methods

Class/Module Index [+]

Quicksearch

ChefZero::Endpoints::EnvironmentNodesEndpoint

/environment/NAME/nodes

Public Instance Methods

get(request) click to toggle source
# File lib/chef_zero/endpoints/environment_nodes_endpoint.rb, line 8
def get(request)
  # 404 if environment does not exist
  get_data(request, request.rest_path[0..1])

  result = {}
  list_data(request, ['nodes']).each do |name|
    node = JSON.parse(get_data(request, ['nodes', name]), :create_additions => false)
    if node['chef_environment'] == request.rest_path[1]
      result[name] = build_uri(request.base_uri, ['nodes', name])
    end
  end
  json_response(200, result)
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.