up
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
// Test API get_user_conversations.php
|
||||
$_GET['user_id'] = 2;
|
||||
$_GET['debug'] = 'true';
|
||||
chdir(__DIR__ . '/../api');
|
||||
ob_start();
|
||||
try {
|
||||
include 'get_user_conversations.php';
|
||||
} catch (Throwable $t) {
|
||||
echo 'Error: ' . $t->getMessage();
|
||||
}
|
||||
$out = ob_get_clean();
|
||||
echo $out;
|
||||
Reference in New Issue
Block a user