mastodon/app/controllers/home_controller.rb

10 lines
205 B
Ruby
Raw Normal View History

2016-02-22 15:00:20 +00:00
class HomeController < ApplicationController
layout 'dashboard'
before_action :authenticate_user!
2016-02-22 15:00:20 +00:00
def index
@timeline = Feed.new(:home, current_user.account).get(10, params[:max_id])
end
2016-02-22 15:00:20 +00:00
end