forked from OpenNeo/impress
7 lines
174 B
Ruby
7 lines
174 B
Ruby
class OutfitsController < ApplicationController
|
|
def new
|
|
@colors = Color.all
|
|
@species = Species.all
|
|
@top_contributors = User.top_contributors.limit(3)
|
|
end
|
|
end
|