From 5a8c47e29afdbb61c32c1e03162abb1bb871ee9e Mon Sep 17 00:00:00 2001 From: horus Date: Thu, 2 Apr 2020 21:52:04 +0200 Subject: Initial commit. --- .../Controllers/Auth/VerificationController.php | 42 ++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 app/Http/Controllers/Auth/VerificationController.php (limited to 'app/Http/Controllers/Auth/VerificationController.php') diff --git a/app/Http/Controllers/Auth/VerificationController.php b/app/Http/Controllers/Auth/VerificationController.php new file mode 100644 index 0000000..5e749af --- /dev/null +++ b/app/Http/Controllers/Auth/VerificationController.php @@ -0,0 +1,42 @@ +middleware('auth'); + $this->middleware('signed')->only('verify'); + $this->middleware('throttle:6,1')->only('verify', 'resend'); + } +} -- cgit v1.2.3