2016-02-22 16:00:20 +01:00
|
|
|
class HomeController < ApplicationController
|
2016-03-06 17:52:23 +01:00
|
|
|
before_action :authenticate_user!
|
|
|
|
|
2016-02-22 16:00:20 +01:00
|
|
|
def index
|
2016-03-08 20:16:11 +01:00
|
|
|
feed = Feed.new(:home, current_user.account)
|
|
|
|
@statuses = feed.get(20, (params[:offset] || 0).to_i)
|
2016-02-22 16:00:20 +01:00
|
|
|
end
|
|
|
|
end
|