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