mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-18 10:39:28 +00:00
39 lines
815 B
PHP
39 lines
815 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace FireflyIII\JsonApi\V3;
|
|
|
|
use FireflyIII\JsonApi\V3\Accounts\AccountSchema;
|
|
use FireflyIII\JsonApi\V3\AccountBalances\AccountBalanceSchema;
|
|
use FireflyIII\JsonApi\V3\Users\UserSchema;
|
|
use LaravelJsonApi\Core\Server\Server as BaseServer;
|
|
|
|
class Server extends BaseServer
|
|
{
|
|
/**
|
|
* The base URI namespace for this server.
|
|
*/
|
|
protected string $baseUri = '/api/v3';
|
|
|
|
/**
|
|
* Bootstrap the server when it is handling an HTTP request.
|
|
*/
|
|
public function serving(): void
|
|
{
|
|
// no-op
|
|
}
|
|
|
|
/**
|
|
* Get the server's list of schemas.
|
|
*/
|
|
protected function allSchemas(): array
|
|
{
|
|
return [
|
|
AccountSchema::class,
|
|
UserSchema::class,
|
|
AccountBalanceSchema::class,
|
|
];
|
|
}
|
|
}
|