class WowPetsController < ProtectedController def index @wow_pets = WowPet.all end def show @wow_pet = WowPet.find(params[:id]) end end