This repository has been archived on 2023-07-01. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon/app/controllers/home_controller.rb
2016-03-25 16:10:14 +01:00

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