2016-02-22 10:00:20 -05:00
|
|
|
class HomeController < ApplicationController
|
2016-03-12 10:09:46 -05:00
|
|
|
layout 'dashboard'
|
|
|
|
|
2016-03-06 11:52:23 -05:00
|
|
|
before_action :authenticate_user!
|
|
|
|
|
2016-02-22 10:00:20 -05:00
|
|
|
def index
|
2016-03-25 11:10:14 -04:00
|
|
|
@timeline = Feed.new(:home, current_user.account).get(10, params[:max_id])
|
2016-03-12 10:09:46 -05:00
|
|
|
end
|
2016-02-22 10:00:20 -05:00
|
|
|
end
|