1
0
Fork 0
forked from OpenNeo/impress
impress/app/controllers/pet_attributes_controller.rb

9 lines
185 B
Ruby
Raw Normal View History

2010-10-10 19:18:42 -07:00
class PetAttributesController < ApplicationController
def index
render :json => {
2014-03-27 20:45:34 -07:00
:color => Color.funny.alphabetical,
2013-01-21 12:55:48 -08:00
:species => Species.alphabetical
2010-10-10 19:18:42 -07:00
}
end
end