This commit is contained in:
lizandrogd
2026-01-21 11:58:17 -05:00
parent 932820d02d
commit c7d0b8b70c
11 changed files with 250 additions and 3 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
// Test get_conversation_detail.php in debug mode
$_GET['debug'] = 'true';
$_GET['user_id'] = 2;
chdir(__DIR__ . '/../api');
ob_start();
try {
include 'get_conversation_detail.php';
} catch (Throwable $t) {
echo 'Error: ' . $t->getMessage();
}
$out = ob_get_clean();
echo $out;