1
0
mirror of https://github.com/mastodon/mastodon synced 2024-11-28 06:48:28 +09:00
mastodon/app/controllers/home_controller.rb

10 lines
205 B
Ruby
Raw Normal View History

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