This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-02-22 07:00:20 -08:00
|
|
|
class HomeController < ApplicationController
|
2016-03-06 08:52:23 -08:00
|
|
|
before_action :authenticate_user!
|
|
|
|
|
2016-02-22 07:00:20 -08:00
|
|
|
def index
|
2016-03-08 11:16:11 -08:00
|
|
|
feed = Feed.new(:home, current_user.account)
|
|
|
|
@statuses = feed.get(20, (params[:offset] || 0).to_i)
|
2016-02-22 07:00:20 -08:00
|
|
|
end
|
|
|
|
end
|