forked from mirror/pixelfed
Update PlaceController, require authentication
This commit is contained in:
parent
4701b0e8f0
commit
e7783af686
|
@ -10,6 +10,11 @@ use App\{
|
|||
|
||||
class PlaceController extends Controller
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
$this->middleware('auth');
|
||||
}
|
||||
|
||||
public function show(Request $request, $id, $slug)
|
||||
{
|
||||
$place = Place::whereSlug($slug)->findOrFail($id);
|
||||
|
|
Loading…
Reference in New Issue