aboutsummaryrefslogtreecommitdiffhomepage
path: root/routes/web.php
diff options
context:
space:
mode:
authorMarvin Borner2018-07-11 18:51:39 +0200
committerMarvin Borner2018-07-11 18:51:39 +0200
commitb7a6fbc9cc5d9d601c60e6ed4123e021e4aeaf5b (patch)
tree17af273b117187ad7937c477fe245c69410f7179 /routes/web.php
parent419c90e49c34aa2b326a25e2ab85cdfb71f18e53 (diff)
Added/fixed email verification
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 () {