FOUR-24108 Reassignment form is not hidden in tasks where the "Allow … #8649
+94
−41
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.





…Reassignment" option is not enabled.
Description
Reassignment form is not hidden in tasks where the "Allow Reassignment" option is not enabled. Expected Behavior:
When the task is changed by next button . the reassignment form should verify if this options is enable for the task If the option is not enable the reassign form should hidden
Related tickets
https://processmaker.atlassian.net/browse/FOUR-24108
Solution
There are two sections of the interface that consume the same endpoint. This endpoint is designed to support both GET and POST. A change was made to use POST in order to send FormData. However, a problem was found: when search strings were introduced, the interface continued using the GET method and did not send FormData. Therefore, the data-retrieval logic for this endpoint is centralized into a single function to ensure consistent behavior across both interfaces.
Additionally, permissions are not required to maintain compatibility with the previous version, because the endpoint was originally created with permissions in a way that did not account for backward compatibility with the previous behavior.
ci:deploy