feat: delete account

This commit is contained in:
2026-05-18 12:41:02 +02:00
parent fd3d3959bd
commit 5c436fd65b
3 changed files with 123 additions and 0 deletions
+1
View File
@@ -12,6 +12,7 @@ Route::prefix('auth')->group(function (): void {
Route::post('logout', [AuthController::class, 'logout']);
Route::get('me', [AuthController::class, 'me']);
Route::patch('me', [AuthController::class, 'update']);
Route::delete('me', [AuthController::class, 'destroy']);
});
});