'guest'], function () { Route::post('user', 'Auth\RegisterController@register')->name('user.register'); Route::post('user/password/lost', 'Auth\ForgotPasswordController@sendResetLinkEmail')->middleware('AvoidResetPassword')->name('user.password.lost');; Route::post('user/password/reset', 'Auth\ResetPasswordController@reset')->name('user.password.reset'); Route::post('webauthn/login/options', [WebAuthnLoginController::class, 'options'])->name('webauthn.login.options'); Route::post('webauthn/lost', [WebAuthnDeviceLostController::class, 'sendRecoveryEmail'])->name('webauthn.lost'); Route::post('webauthn/recover/options', [WebAuthnRecoveryController::class, 'options'])->name('webauthn.recover.options'); Route::post('webauthn/recover', [WebAuthnRecoveryController::class, 'recover'])->name('webauthn.recover'); }); /** * Routes that only work for unauthenticated user (return an error otherwise) * that can be requested max 10 times per minute by the same IP */ Route::group(['middleware' => ['guest', 'throttle:10,1']], function () { Route::post('user/login', 'Auth\LoginController@login')->name('user.login'); Route::post('webauthn/login', [WebAuthnLoginController::class, 'login'])->name('webauthn.login'); }); /** * Routes protected by an authentication guard */ Route::group(['middleware' => 'behind-auth'], function () { Route::put('user', 'Auth\UserController@update')->name('user.update'); Route::patch('user/password', 'Auth\PasswordController@update')->name('user.password.update'); Route::get('user/logout', 'Auth\LoginController@logout')->name('user.logout'); Route::delete('user', 'Auth\UserController@delete')->name('user.delete')->middleware('disableInDemoMode'); Route::get('oauth/personal-access-tokens', 'Auth\PersonalAccessTokenController@forUser')->name('passport.personal.tokens.index'); Route::post('oauth/personal-access-tokens', 'Auth\PersonalAccessTokenController@store')->name('passport.personal.tokens.store'); Route::delete('oauth/personal-access-tokens/{token_id}', 'Auth\PersonalAccessTokenController@destroy')->name('passport.personal.tokens.destroy'); Route::post('webauthn/register/options', [WebAuthnRegisterController::class, 'options'])->name('webauthn.register.options'); Route::post('webauthn/register', [WebAuthnRegisterController::class, 'register'])->name('webauthn.register'); Route::get('webauthn/credentials', [WebAuthnManageController::class, 'index'])->name('webauthn.credentials.index'); Route::patch('webauthn/credentials/{credential}/name', [WebAuthnManageController::class, 'rename'])->name('webauthn.credentials.rename'); Route::delete('webauthn/credentials/{credential}', [WebAuthnManageController::class, 'delete'])->name('webauthn.credentials.delete'); }); /** * Route for the main landing view */ Route::get('/{any}', 'SinglePageController@index')->where('any', '.*')->name('landing');