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