class WowMountsController < ProtectedController def index @wow_mounts = WowMount.all end def show @wow_mount = WowMount.find(params[:id]) end end