mirror of https://github.com/pixelfed/pixelfed.git
25 lines
636 B
PHP
25 lines
636 B
PHP
<?php
|
|
|
|
namespace App\Auth;
|
|
|
|
use League\OAuth2\Server\Entities\AccessTokenEntityInterface;
|
|
|
|
class BearerTokenResponse extends \League\OAuth2\Server\ResponseTypes\BearerTokenResponse
|
|
{
|
|
/**
|
|
* Add custom fields to your Bearer Token response here, then override
|
|
* AuthorizationServer::getResponseType() to pull in your version of
|
|
* this class rather than the default.
|
|
*
|
|
* @param AccessTokenEntityInterface $accessToken
|
|
*
|
|
* @return array
|
|
*/
|
|
protected function getExtraParams(AccessTokenEntityInterface $accessToken)
|
|
{
|
|
return [
|
|
'created_at' => time(),
|
|
];
|
|
}
|
|
}
|