Retrospring/app/controllers/public_controller.rb

15 lines
408 B
Ruby
Raw Normal View History

2014-12-10 21:39:35 -08:00
class PublicController < ApplicationController
2020-04-18 16:45:50 -07:00
before_action :authenticate_user!
2014-12-12 08:54:13 -08:00
2014-12-10 21:39:35 -08:00
def index
@timeline = Answer.cursored_public_timeline(last_id: params[:last_id])
@timeline_last_id = @timeline.map(&:id).min
@more_data_available = !Answer.cursored_public_timeline(last_id: @timeline_last_id, size: 1).count.zero?
2014-12-10 21:39:35 -08:00
respond_to do |format|
format.html
format.js
end
end
end