mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	Expanded test coverage.
This commit is contained in:
		| @@ -28,7 +28,7 @@ Route::group( | ||||
|  | ||||
|     // Password Reset Routes... | ||||
|     Route::get('password/reset/{token}', ['uses' => 'Auth\ResetPasswordController@showResetForm', 'as' => 'password.reset']); | ||||
|     Route::post('password/email', 'Auth\ForgotPasswordController@sendResetLinkEmail'); | ||||
|     Route::post('password/email', ['uses' => 'Auth\ForgotPasswordController@sendResetLinkEmail','as' => 'password.email']); | ||||
|     Route::post('password/reset', 'Auth\ResetPasswordController@reset'); | ||||
|     Route::get('password/reset', 'Auth\ForgotPasswordController@showLinkRequestForm'); | ||||
|  | ||||
| @@ -50,7 +50,6 @@ Route::group( | ||||
| /** | ||||
|  * For the two factor routes, the user must be logged in, but NOT 2FA. Account confirmation does not matter here. | ||||
|  * | ||||
|  * @deprecated | ||||
|  */ | ||||
| Route::group( | ||||
|     ['middleware' => 'user-logged-in-no-2fa', 'prefix' => 'two-factor', 'as' => 'two-factor.', 'namespace' => 'Auth'], function () { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user