mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 16:44:50 +00:00
20 lines
258 B
PHP
20 lines
258 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
class StoryController extends Controller
|
|
{
|
|
|
|
public function construct()
|
|
{
|
|
$this->middleware('auth');
|
|
}
|
|
|
|
public function home(Request $request)
|
|
{
|
|
return view('stories.home');
|
|
}
|
|
}
|