Add suggested persons and third parties methods

Introduced getSuggestedPersons and getSuggestedThirdParties methods across various WorkflowHandlers. These methods integrate with ProvidePersonsAssociated and ProvideThirdPartiesAssociated services to fetch related entities, enhancing the workflow handling capabilities.
This commit is contained in:
2024-10-23 01:06:15 +02:00
parent 4f18b1d2b2
commit 261bc88b5e
11 changed files with 166 additions and 0 deletions

View File

@@ -238,6 +238,16 @@ class WorkflowViewSendPublicControllerTest extends TestCase
{
return 'content';
}
public function getSuggestedPersons(EntityWorkflow $entityWorkflow): array
{
return [];
}
public function getSuggestedThirdParties(EntityWorkflow $entityWorkflow): array
{
return [];
}
};
}