From 9ecf157aef5166db7ab867bf1c36a58b01be8b1d Mon Sep 17 00:00:00 2001 From: Krzysztof Strzelecki Date: Wed, 2 Oct 2019 19:01:29 +0200 Subject: [PATCH] Rejestracja - weryfikacja adresu email --- routes/web.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/routes/web.php b/routes/web.php index 2beecac..394ebea 100644 --- a/routes/web.php +++ b/routes/web.php @@ -54,6 +54,10 @@ Route::post('/jednostka', 'fireStationController@store'); Route::get('/jednostka/getcounties/{id}','DataController@getCounties'); Route::get('/jednostka/getcommunities/{id}','DataController@getCommunities'); +Route::get('register/verify/{confirmationCode}', [ + 'as' => 'confirmation_path', + 'uses' => 'RegistrationController@confirm' +]); //Auth::routes(); // //Route::get('/home', 'HomeController@index')->name('home');