1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2024-12-26 01:36:43 +00:00
pixelfed/app/Http/Controllers/TimelineController.php
2019-03-20 13:59:43 -06:00

30 lines
537 B
PHP

<?php
namespace App\Http\Controllers;
use Auth, Cache;
use App\Follower;
use App\Profile;
use App\Status;
use App\User;
use App\UserFilter;
use Illuminate\Http\Request;
class TimelineController extends Controller
{
public function __construct()
{
$this->middleware('auth');
$this->middleware('twofactor');
}
public function local(Request $request)
{
return view('timeline.local');
}
public function network(Request $request)
{
return view('timeline.network');
}
}