Closed MDeLuise closed 1 month ago
Attention: Patch coverage is 0%
with 9 lines
in your changes missing coverage. Please review.
Project coverage is 16.80%. Comparing base (
d5e338d
) to head (a94041c
). Report is 5 commits behind head on develop.
Files with missing lines | Patch % | Lines |
---|---|---|
...urces/v1/resources/DeviceManagementOperations.java | 0.00% | 9 Missing :warning: |
Description
This PR implements the capability to search operations by their status using the
GET /{scopeId}/devices/{deviceId}/operations
endpoint.Changes Made
DeviceManagementOperations
query method to support additional predicates.The current query method was refactored because it was enforcing a "filter by device ID" constraint on all queries, regardless of any other predicates provided. This limitation prevented any other filtering criteria (e.g., status) from being applied, so the method has been updated to allow flexible filtering based on multiple criteria.