1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2025-03-04 10:39:08 +00:00
pixelfed/app/Http/Controllers/TimelineController.php

26 lines
437 B
PHP
Raw Normal View History

2018-04-15 19:56:17 -06:00
<?php
namespace App\Http\Controllers;
2018-11-15 20:26:10 -07:00
use Auth, Cache;
2018-08-28 03:07:36 +00:00
use App\Follower;
use App\Profile;
use App\Status;
use App\User;
use App\UserFilter;
2018-11-08 18:27:38 -07:00
use Illuminate\Http\Request;
2018-04-15 19:56:17 -06:00
class TimelineController extends Controller
{
public function __construct()
{
2018-08-28 03:07:36 +00:00
$this->middleware('auth');
2018-09-15 23:15:45 -06:00
$this->middleware('twofactor');
2018-04-15 19:56:17 -06:00
}
2018-11-08 18:27:38 -07:00
public function local(Request $request)
{
2018-12-10 20:41:41 -07:00
return view('timeline.local');
2018-08-28 03:07:36 +00:00
}
2018-04-15 19:56:17 -06:00
}