Update StoryController, remove auth middleware

This commit is contained in:
Daniel Supernault 2020-02-05 23:15:55 -07:00
parent e6dc858061
commit 369a1a599d
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 0 additions and 6 deletions

View File

@ -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);