mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-07-28 17:02:04 +03:00
Refactored confirm actions to their own controller
This commit is contained in:
@ -211,10 +211,10 @@ Route::get('/login', 'Auth\LoginController@getLogin');
|
||||
Route::post('/login', 'Auth\LoginController@login');
|
||||
Route::get('/logout', 'Auth\LoginController@logout');
|
||||
Route::get('/register', 'Auth\RegisterController@getRegister');
|
||||
Route::get('/register/confirm', 'Auth\RegisterController@getRegisterConfirmation');
|
||||
Route::get('/register/confirm/awaiting', 'Auth\RegisterController@showAwaitingConfirmation');
|
||||
Route::post('/register/confirm/resend', 'Auth\RegisterController@resendConfirmation');
|
||||
Route::get('/register/confirm/{token}', 'Auth\RegisterController@confirmEmail');
|
||||
Route::get('/register/confirm', 'Auth\ConfirmEmailController@show');
|
||||
Route::get('/register/confirm/awaiting', 'Auth\ConfirmEmailController@showAwaiting');
|
||||
Route::post('/register/confirm/resend', 'Auth\ConfirmEmailController@resend');
|
||||
Route::get('/register/confirm/{token}', 'Auth\ConfirmEmailController@confirm');
|
||||
Route::post('/register', 'Auth\RegisterController@postRegister');
|
||||
|
||||
// Password reset link request routes...
|
||||
|
Reference in New Issue
Block a user