retrospring/app/controllers/public_controller.rb

10 lines
209 B
Ruby
Raw Normal View History

2014-12-11 06:39:35 +01: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