aboutsummaryrefslogtreecommitdiffhomepage
path: root/routes/web.php
diff options
context:
space:
mode:
Diffstat (limited to 'routes/web.php')
-rw-r--r--routes/web.php4
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 () {