mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 14:31:26 +00:00
Add StoryController
This commit is contained in:
parent
04de1b3777
commit
929c99abb6
1 changed files with 12 additions and 0 deletions
|
@ -2,6 +2,18 @@
|
|||
|
||||
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');
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue