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