Signature: allow for null index in signature zone

This commit is contained in:
nobohan
2024-09-12 17:02:45 +02:00
parent 2b516629f6
commit 119668e415
3 changed files with 6 additions and 4 deletions

View File

@@ -80,8 +80,10 @@ class SignatureRequestController
return new JsonResponse(
[
'state' => $signature->getState(),
'storedObject' => $this->normalizer->normalize($storedObject, 'json')
'storedObject' => $this->normalizer->normalize($storedObject, 'json'),
],
JsonResponse::HTTP_OK, []);
JsonResponse::HTTP_OK,
[]
);
}
}