2010-10-10 19:18:42 -07:00
|
|
|
class OutfitsController < ApplicationController
|
|
|
|
def edit
|
|
|
|
render :layout => false
|
|
|
|
end
|
2010-11-05 15:45:05 -07:00
|
|
|
|
|
|
|
def new
|
|
|
|
@colors = Color.all
|
|
|
|
@species = Species.all
|
|
|
|
@top_contributors = User.top_contributors.limit(3)
|
|
|
|
end
|
2010-10-10 19:18:42 -07:00
|
|
|
end
|