I've got a custom field as such:
"vintrax:zendesk": { "name": "Zendesk ticket", "type": "link", "search": true, "placeholder": "https://company.zendesk.com/agent/tickets/1337", "fulltext": true }
This custom field allows our users to link our Maniphest task to an existing ticket system called Zendesk.
Note that his field is intentionally optional as task exists where no ticket exists (and will never exists) for this in the Zendesk system.
Pretend that we've got a Maniphest task with a value as such: https://company.zendesk.com/agent/tickets/8888
Me and my co-workers can only search for Maniphest items whenever we use the Maniphest advanced search and fully provide the link.
The following does not seem possible as this would return no results:
- To fully provide the link in the search field at the right top of Phabricator
- To be able to search for 8888 in the Maniphest advanced search when entering this in the custom Zendesk ticket field
- To be able to search for 8888 in the search field at the right top of Phabricator
This result into having my co-workings to think that no Maniphest task exists and new (unnecessary) tasks are created, leading to chaos. The provided solution by my co-workers is to make partial search available so they are able to search for 8888 as the value of this field uses the following format:
https://company.zendesk.com/agent/tickets/<uniqueId>
In my working environment, we always communicate the unique identifier as this link always has the same prefix https://company.zendesk.com/agent/tickets/.
Is it possible to be able to introduce a partial search and to do something for the search field in the right top?
Or is there something else I could do in order to make it easier for my co-workers to search for this unique identifier?