enable account deletion

This commit is contained in:
2026-02-10 16:46:08 +01:00
parent 2b5446555b
commit 0bde09ad5c
3 changed files with 28 additions and 8 deletions
+1
View File
@@ -19,6 +19,7 @@ Route::group(['middleware' => ['auth', 'registration']], function () {
Route::group(['middleware' => ['auth', 'verified']], function () {
Route::get('me', 'Profile\DetailsController@index');
Route::patch('me/details', 'Profile\DetailsController@update');
Route::delete('me', 'Profile\DetailsController@destroy');
Route::patch('me/details/auth', 'Profile\AuthDetailsController@update');
Route::post('me/avatar', 'Profile\AvatarController@update');
Route::delete('me/avatar', 'Profile\AvatarController@destroy');