From 369a1a599d3338273893bfc2d2f80cf5ac02474d Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Wed, 5 Feb 2020 23:15:55 -0700 Subject: [PATCH] Update StoryController, remove auth middleware --- app/Http/Controllers/StoryController.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/app/Http/Controllers/StoryController.php b/app/Http/Controllers/StoryController.php index 7aab0ebb0..a7cfb9717 100644 --- a/app/Http/Controllers/StoryController.php +++ b/app/Http/Controllers/StoryController.php @@ -16,12 +16,6 @@ use App\Services\FollowerService; class StoryController extends Controller { - - public function construct() - { - $this->middleware('auth'); - } - public function apiV1Add(Request $request) { abort_if(!config('instance.stories.enabled') || !$request->user(), 404);