Initial commit

This commit is contained in:
whatever127
2019-09-14 17:38:35 +02:00
commit b925e9a5f6
12 changed files with 313 additions and 0 deletions

14
listid.php Normal file
View File

@ -0,0 +1,14 @@
<?php
require_once 'api/listid.php';
require_once 'shared/main.php';
$search = isset($_GET['search']) ? $_GET['search'] : null;
$sortByDate = isset($_GET['sortByDate']) ? $_GET['sortByDate'] : false;
header('Content-Type: application/json');
$apiResponse = uupListIds($search, $sortByDate);
if(isset($apiResponse['error']))
http_response_code(400);
sendResponse($apiResponse);