enable account deletion
This commit is contained in:
@@ -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');
|
||||
|
||||
Reference in New Issue
Block a user