mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-07-04 16:06:13 +00:00
This update includes the implementation of methods to add and retrieve addressee history in the Ticket entity, a handler for addressee setting command, denormalizer for transforming request data to SetAddresseesCommand, and corresponding tests. Additionally, it adds a SetAddresseesController for handling addressee related requests and updates the API specifications.
21 lines
656 B
YAML
21 lines
656 B
YAML
services:
|
|
_defaults:
|
|
autowire: true
|
|
autoconfigure: true
|
|
|
|
Chill\MainBundle\Validation\:
|
|
resource: '../../Validation'
|
|
|
|
chill_main.validator_user_circle_consistency:
|
|
class: Chill\MainBundle\Validator\Constraints\Entity\UserCircleConsistencyValidator
|
|
arguments:
|
|
- "@chill.main.security.authorization.helper"
|
|
tags:
|
|
- { name: "validator.constraint_validator" }
|
|
|
|
Chill\MainBundle\Validation\Validator\UserUniqueEmailAndUsername:
|
|
arguments:
|
|
$em: '@Doctrine\ORM\EntityManagerInterface'
|
|
tags:
|
|
- { name: "validator.constraint_validator" }
|