mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-02-12 17:13:37 +01:00
9 lines
209 B
Ruby
9 lines
209 B
Ruby
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
|