mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
f78c0635ee
Direct route redirect does not seem to go via standard URL generator so misses off generation via base URL.
40 lines
770 B
PHP
40 lines
770 B
PHP
<?php
|
|
|
|
namespace BookStack\Api;
|
|
|
|
use BookStack\Http\ApiController;
|
|
|
|
class ApiDocsController extends ApiController
|
|
{
|
|
/**
|
|
* Load the docs page for the API.
|
|
*/
|
|
public function display()
|
|
{
|
|
$docs = ApiDocsGenerator::generateConsideringCache();
|
|
$this->setPageTitle(trans('settings.users_api_tokens_docs'));
|
|
|
|
return view('api-docs.index', [
|
|
'docs' => $docs,
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Show a JSON view of the API docs data.
|
|
*/
|
|
public function json()
|
|
{
|
|
$docs = ApiDocsGenerator::generateConsideringCache();
|
|
|
|
return response()->json($docs);
|
|
}
|
|
|
|
/**
|
|
* Redirect to the API docs page.
|
|
*/
|
|
public function redirect()
|
|
{
|
|
return redirect('/api/docs');
|
|
}
|
|
}
|