about summary refs log tree commit diff
path: root/app/controllers
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-03-25 16:10:14 +0100
committerEugen Rochko <eugen@zeonfederated.com>2016-03-25 16:10:14 +0100
commit5764d52b04b04381d52896737eb2ffdfe1f87cfd (patch)
treecf8d3b6a1706df893bea320ac590ed0e73afc94f /app/controllers
parentbb98ee489d096c438d3e299deb15e47dfe9b5bff (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.rb1
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