1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2025-03-04 02:28:08 +00:00
pixelfed/app/Http/Controllers/StoryController.php

20 lines
258 B
PHP
Raw Normal View History

2018-08-26 13:21:58 -06:00
<?php
namespace App\Http\Controllers;
2019-01-31 13:28:30 -07:00
use Illuminate\Http\Request;
2018-08-26 13:21:58 -06:00
class StoryController extends Controller
{
2019-01-31 13:28:30 -07:00
public function construct()
{
$this->middleware('auth');
}
public function home(Request $request)
{
return view('stories.home');
}
2018-08-28 03:07:36 +00:00
}