mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-07-28 17:02:04 +03:00
Started core API route work
This commit is contained in:
20
app/Http/Controllers/Api/ApiController.php
Normal file
20
app/Http/Controllers/Api/ApiController.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php namespace BookStack\Http\Controllers\Api;
|
||||
|
||||
use BookStack\Api\ListingResponseBuilder;
|
||||
use BookStack\Http\Controllers\Controller;
|
||||
use Illuminate\Database\Eloquent\Builder;
|
||||
use Illuminate\Http\JsonResponse;
|
||||
|
||||
class ApiController extends Controller
|
||||
{
|
||||
|
||||
/**
|
||||
* Provide a paginated listing JSON response in a standard format
|
||||
* taking into account any pagination parameters passed by the user.
|
||||
*/
|
||||
protected function apiListingResponse(Builder $query, array $fields): JsonResponse
|
||||
{
|
||||
$listing = new ListingResponseBuilder($query, $fields);
|
||||
return $listing->toResponse();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user