impress/app/controllers/pet_attributes_controller.rb
2013-01-24 18:25:59 -06:00

8 lines
179 B
Ruby

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