From b7a6fbc9cc5d9d601c60e6ed4123e021e4aeaf5b Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 11 Jul 2018 18:51:39 +0200 Subject: Added/fixed email verification --- routes/web.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'routes') diff --git a/routes/web.php b/routes/web.php index 0b980a1..78dc452 100644 --- a/routes/web.php +++ b/routes/web.php @@ -9,6 +9,10 @@ | contains the "web" middleware group. Now create something great! | */ + +// Route should not use authentication! +Route::get('verify/email/{token}', 'Auth\RegisterController@verifyEmail'); + Auth::routes(); Route::middleware('auth', 'throttle:30') // throttle to 30 per minute ->group(function () { -- cgit v1.2.3