mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-07-08 08:30:15 +02:00
b915d87d4a
* feat: password reset via symfonycasts/reset-password-bundle (#179) Implements the full password reset flow using the SymfonyCasts reset-password-bundle. * ci: share base layer cache between dev and prod builds * fix: use CSS form selector in tests instead of translated button text * fix: translate missing validator string for reset password email field * fix: translate reset password form labels via TranslatorInterface * ci: override MAILER_DSN to null for PHPUnit so mailer host is not required
37 lines
1.1 KiB
PHP
37 lines
1.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Tvdt\Entity;
|
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
use Symfony\Bridge\Doctrine\Types\UuidType;
|
|
use Symfony\Component\Uid\Uuid;
|
|
use SymfonyCasts\Bundle\ResetPassword\Model\ResetPasswordRequestInterface;
|
|
use SymfonyCasts\Bundle\ResetPassword\Model\ResetPasswordRequestTrait;
|
|
use Tvdt\Repository\ResetPasswordRequestRepository;
|
|
|
|
#[ORM\Entity(repositoryClass: ResetPasswordRequestRepository::class)]
|
|
class ResetPasswordRequest implements ResetPasswordRequestInterface
|
|
{
|
|
use ResetPasswordRequestTrait;
|
|
|
|
#[ORM\Column(type: UuidType::NAME, unique: true)]
|
|
#[ORM\CustomIdGenerator(class: 'doctrine.uuid_generator')]
|
|
#[ORM\GeneratedValue(strategy: 'CUSTOM')]
|
|
#[ORM\Id]
|
|
public private(set) Uuid $id;
|
|
|
|
public function __construct(#[ORM\JoinColumn(nullable: false)]
|
|
#[ORM\ManyToOne]
|
|
private User $user, \DateTimeInterface $expiresAt, string $selector, string $hashedToken)
|
|
{
|
|
$this->initialize($expiresAt, $selector, $hashedToken);
|
|
}
|
|
|
|
public function getUser(): User
|
|
{
|
|
return $this->user;
|
|
}
|
|
}
|