mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-06 12:45:03 +02:00
26 lines
591 B
PHP
26 lines
591 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Http\Api\Field\Auth\User;
|
|
|
|
use App\Contracts\Http\Api\Field\SelectableField;
|
|
use App\Http\Api\Field\Field;
|
|
use App\Http\Api\Query\Query;
|
|
use App\Http\Api\Schema\Schema;
|
|
use App\Models\Auth\User;
|
|
|
|
class UserIdField extends Field implements SelectableField
|
|
{
|
|
public function __construct(Schema $schema)
|
|
{
|
|
parent::__construct($schema, User::ATTRIBUTE_ID);
|
|
}
|
|
|
|
public function shouldSelect(Query $query, Schema $schema): bool
|
|
{
|
|
// Needed to match user relation for playlist endpoints
|
|
return true;
|
|
}
|
|
}
|