Retrospring/app/controllers/static_controller.rb

30 lines
426 B
Ruby
Raw Normal View History

2014-08-01 02:47:25 -07:00
class StaticController < ApplicationController
def index
if user_signed_in?
@timeline = current_user.timeline.paginate(page: params[:page])
respond_to do |format|
format.html
format.js
end
else
return render 'static/front'
end
2014-08-01 02:47:25 -07:00
end
def about
2014-11-30 07:41:28 -08:00
@admins = User.where(admin: true).order(:id)
2014-08-01 02:47:25 -07:00
end
2015-01-07 12:30:52 -08:00
def faq
end
2015-01-16 13:36:39 -08:00
def privacy_policy
end
2015-01-16 14:16:28 -08:00
def terms
end
2014-08-01 02:47:25 -07:00
end