impress/app/controllers/pet_attributes_controller.rb
2010-10-10 22:18:42 -04:00

8 lines
161 B
Ruby

class PetAttributesController < ApplicationController
def index
render :json => {
:color => Color.all,
:species => Species.all
}
end
end