2016-02-22 09:00:20 -06:00
|
|
|
class HomeController < ApplicationController
|
2016-03-06 10:52:23 -06:00
|
|
|
before_action :authenticate_user!
|
|
|
|
|
2016-02-22 09:00:20 -06:00
|
|
|
def index
|
2016-08-24 10:56:44 -05:00
|
|
|
@body_classes = 'app-body'
|
|
|
|
@home = Feed.new(:home, current_user.account).get(20)
|
|
|
|
@mentions = Feed.new(:mentions, current_user.account).get(20)
|
2016-03-12 09:09:46 -06:00
|
|
|
end
|
2016-02-22 09:00:20 -06:00
|
|
|
end
|