aboutsummaryrefslogtreecommitdiff
path: root/app/controllers/home_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/home_controller.rb')
-rw-r--r--app/controllers/home_controller.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/app/controllers/home_controller.rb b/app/controllers/home_controller.rb
index 5238b2fc0..c65377082 100644
--- a/app/controllers/home_controller.rb
+++ b/app/controllers/home_controller.rb
@@ -4,13 +4,5 @@ class HomeController < ApplicationController
before_action :authenticate_user!
def index
- feed = Feed.new(:home, current_user.account)
- @statuses = feed.get(20, (params[:offset] || 0).to_i)
- end
-
- def mentions
- feed = Feed.new(:mentions, current_user.account)
- @statuses = feed.get(20, (params[:offset] || 0).to_i)
- render action: :index
end
end