diff options
author | Marvin Borner | 2018-07-11 18:51:39 +0200 |
---|---|---|
committer | Marvin Borner | 2018-07-11 18:51:39 +0200 |
commit | b7a6fbc9cc5d9d601c60e6ed4123e021e4aeaf5b (patch) | |
tree | 17af273b117187ad7937c477fe245c69410f7179 /routes/web.php | |
parent | 419c90e49c34aa2b326a25e2ab85cdfb71f18e53 (diff) |
Added/fixed email verification
Diffstat (limited to 'routes/web.php')
-rw-r--r-- | routes/web.php | 4 |
1 files changed, 4 insertions, 0 deletions
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 () { |