class ConversationsController < ApplicationController respond_to :html, :json def show id = params[:id].to_i @widget = { id: id, message_ids: [1, 2, 3, 4, 5].map { |x| 100*id + x } } # sleep 1 respond_with @widget end end