Rename signature templates by removing underscores

Standardized template names in WorkflowController and WorkflowAddSignatureController for better consistency. Updated references and renamed template files accordingly.
This commit is contained in:
2024-10-21 13:55:01 +02:00
parent daef18408a
commit 7b322d7bab
5 changed files with 3 additions and 3 deletions

View File

@@ -62,7 +62,7 @@ class WorkflowAddSignatureControllerTest extends TestCase
->willReturn([]);
$twig = $this->createMock(Environment::class);
$twig->method('render')->with('@ChillMain/Workflow/_signature_sign.html.twig', $this->isType('array'))
$twig->method('render')->with('@ChillMain/Workflow/signature_sign.html.twig', $this->isType('array'))
->willReturn('ok');
$urlGenerator = $this->createMock(UrlGeneratorInterface::class);