1
0
Fork 0
forked from OpenNeo/impress
impress/app/controllers/outfits_controller.rb
2010-11-05 18:45:05 -04:00

11 lines
222 B
Ruby

class OutfitsController < ApplicationController
def edit
render :layout => false
end
def new
@colors = Color.all
@species = Species.all
@top_contributors = User.top_contributors.limit(3)
end
end