diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-03-25 16:10:14 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-03-25 16:10:14 +0100 |
commit | 5764d52b04b04381d52896737eb2ffdfe1f87cfd (patch) | |
tree | cf8d3b6a1706df893bea320ac590ed0e73afc94f /app/controllers | |
parent | bb98ee489d096c438d3e299deb15e47dfe9b5bff (diff) |
Fix Sidekiq pooling issues. Remove API docs from homepage, replace with
a basic home timeline
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 |