Retrospring/app/controllers/public_controller.rb

10 lines
209 B
Ruby
Raw Normal View History

2014-12-10 21:39:35 -08:00
class PublicController < ApplicationController
def index
@timeline = Answer.all.reverse_order.paginate(page: params[:page])
respond_to do |format|
format.html
format.js
end
end
end