mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-11 13:33:21 -08:00
9 lines
205 B
Ruby
9 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
|