2010-10-10 19:18:42 -07:00
|
|
|
class PetAttributesController < ApplicationController
|
2010-12-11 07:32:42 -08:00
|
|
|
caches_page :index
|
|
|
|
|
2010-10-10 19:18:42 -07:00
|
|
|
def index
|
|
|
|
render :json => {
|
2010-11-24 18:17:24 -08:00
|
|
|
:color => Color.all_ordered_by_name,
|
|
|
|
:species => Species.all_ordered_by_name
|
2010-10-10 19:18:42 -07:00
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|