Feature: [calendar][docgen] generation context for Calendar

This commit is contained in:
2022-10-20 21:36:44 +02:00
parent 2b1d9cabff
commit 63f3010395
5 changed files with 561 additions and 2 deletions

View File

@@ -73,14 +73,14 @@ class Invite implements TrackUpdateInterface, TrackCreationInterface
/**
* @ORM\Column(type="text", nullable=false, options={"default": "pending"})
* @Serializer\Groups(groups={"calendar:read", "read"})
* @Serializer\Groups(groups={"calendar:read", "read", "docgen:read"})
*/
private string $status = self::PENDING;
/**
* @ORM\ManyToOne(targetEntity="Chill\MainBundle\Entity\User")
* @ORM\JoinColumn(nullable=false)
* @Serializer\Groups(groups={"calendar:read", "read"})
* @Serializer\Groups(groups={"calendar:read", "read", "docgen:read"})
*/
private ?User $user = null;