diff options
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/home_controller.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/controllers/home_controller.rb b/app/controllers/home_controller.rb index c65377082..9b0b36a86 100644 --- a/app/controllers/home_controller.rb +++ b/app/controllers/home_controller.rb @@ -4,5 +4,6 @@ class HomeController < ApplicationController before_action :authenticate_user! def index + @timeline = Feed.new(:home, current_user.account).get(10, params[:max_id]) end end |