Vote #79212
未完了custom field filter on issues list requires other filters to be respected
0%
説明
Custom field filters included into issues REST api request are not working as expected.
/issues.json?cf_1=1234
will return all issues not only those with the value @1234@ in the custom field with id 1. That is the filter is completely ignored.
The only case in which custom field filters are working is when the query string includes a @project_id@ filter.
/issues.json?cf_1=1234&project_id=1
This works. Only issues with the custom field 1 containing the value @1234@ are being returned.
In contrast to this adding the @status_id@ is not causing the custom field filter to be respected.