mirror of https://github.com/pixelfed/pixelfed
Add TimelineController
parent
c477cf9a9b
commit
5f775ce648
@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class TimelineController extends Controller
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
$this->middleware('auth');
|
||||
}
|
||||
|
||||
public function personal()
|
||||
{
|
||||
return view('timeline.personal');
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue