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

8 lines
185 B
Ruby

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