Added possibility to authenticate with the given API token

This commit is contained in:
Jan Böhmer 2023-08-16 00:13:01 +02:00
parent 3bc6e61869
commit bcd41c4d9b
5 changed files with 125 additions and 3 deletions

View file

@ -23,10 +23,11 @@ declare(strict_types=1);
namespace App\Repository\UserSystem;
use App\Repository\NamedDBElementRepository;
use App\Entity\UserSystem\ApiToken;
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
use Doctrine\ORM\EntityRepository;
use Doctrine\Persistence\ManagerRegistry;
class ApiTokenRepository extends EntityRepository
{
}