mastodon/app/controllers/home_controller.rb

10 lines
271 B
Ruby
Raw Normal View History

2016-02-22 16:00:20 +01:00
class HomeController < ApplicationController
before_action :authenticate_user!
2016-02-22 16:00:20 +01:00
def index
@body_classes = 'app-body'
@home = Feed.new(:home, current_user.account).get(20)
@mentions = Feed.new(:mentions, current_user.account).get(20)
end
2016-02-22 16:00:20 +01:00
end