diff options
Diffstat (limited to 'routes')
-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 () { |