glitch-soc/app/controllers/home_controller.rb
2016-03-25 16:10:14 +01:00

10 lines
205 B
Ruby

class HomeController < ApplicationController
layout 'dashboard'
before_action :authenticate_user!
def index
@timeline = Feed.new(:home, current_user.account).get(10, params[:max_id])
end
end