mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-08 00:43:15 +00:00
5764d52b04
a basic home timeline
10 lines
205 B
Ruby
10 lines
205 B
Ruby
class HomeController < ApplicationController
|
|
layout 'dashboard'
|
|
|
|
before_action :authenticate_user!
|
|
|
|
def index
|
|
@timeline = Feed.new(:home, current_user.account).get(10, params[:max_id])
|
|
end
|
|
end
|