mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
Add TimelineController
This commit is contained in:
parent
c477cf9a9b
commit
5f775ce648
1 changed files with 18 additions and 0 deletions
18
app/Http/Controllers/TimelineController.php
Normal file
18
app/Http/Controllers/TimelineController.php
Normal file
|
@ -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 a new issue