Feature #325
closedRetrieve a list of all puppetclasses using the REST Api
Description
When playing aroung with the rest api I missed the feature to retrieve a list of all puppetclasses with their respective ids.
So, I alter the file app/controllers/puppetclasses_controller.rb to include a method to retrieve a json object with all classes with their ids.
def all
@puppetclasses = Puppetclass.find(:all, :select => "id, name", :order => 'id').to_json
render :json => @puppetclasses
end
Then, in the router.rb file I add:
map.connect "/puppetclasses/all", :controller => 'puppetclasses', :action => 'all'
I am not a big ruby expert, so I don't know if this is the best approach... :)
Updated by Ohad Levy about 14 years ago
patch? :)
look for the format_for for examples
Updated by Gustavo Soares about 14 years ago
Ohad Levy wrote:
patch? :)
look for the format_for for examples
Take a look at this patch: http://github.com/gustavosoares/foreman/commit/daf07f29b9559f239c6de4ca877e6d7cdeb744b4
Updated by Ohad Levy about 14 years ago
- Category set to API
- Assignee set to Ohad Levy
- Target version set to 0.1-6
Updated by Ohad Levy about 14 years ago
- Status changed from New to Ready For Testing
- % Done changed from 0 to 100
Applied in changeset 3aa6ea3f48aa3c54e37970b9e6bbf5c96f6ca22d.
Updated by Ohad Levy about 14 years ago
- Status changed from Ready For Testing to Closed