Project

General

Profile

Actions

Feature #325

closed

Retrieve a list of all puppetclasses using the REST Api

Added by Gustavo Soares almost 14 years ago. Updated over 13 years ago.

Status:
Closed
Priority:
Normal
Assignee:
Category:
API
Target version:
Difficulty:
Triaged:
Fixed in Releases:
Found in Releases:

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... :)

Actions #1

Updated by Ohad Levy over 13 years ago

patch? :)
look for the format_for for examples

Actions #2

Updated by Gustavo Soares over 13 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

Actions #3

Updated by Ohad Levy over 13 years ago

  • Category set to API
  • Assignee set to Ohad Levy
  • Target version set to 0.1-6
Actions #4

Updated by Ohad Levy over 13 years ago

  • Status changed from New to Ready For Testing
  • % Done changed from 0 to 100
Actions #5

Updated by Ohad Levy over 13 years ago

  • Status changed from Ready For Testing to Closed
Actions

Also available in: Atom PDF