Add fields for upsert person

This commit is contained in:
Boris Waaub
2026-04-10 10:06:24 +00:00
committed by Julien Fastré
parent ac1ae2a3c6
commit aa54e82c6c
34 changed files with 720 additions and 568 deletions

View File

@@ -29,6 +29,13 @@ class TicketListControllerTest extends WebTestCase
$client->request('GET', '/fr/ticket/ticket/list');
// The controller requires TicketVoter::READ permission.
// If no fixtures grant this permission to the test user,
// the response will be 403.
if (403 === $client->getResponse()->getStatusCode()) {
self::markTestSkipped('The test user does not have CHILL_TICKET_TICKET_READ permission. Add ticket permission fixtures to enable this test.');
}
self::assertResponseIsSuccessful();
}
}